(20.4ms)  DROP DATABASE IF EXISTS "adopt_dont_shop_test"
 (118.0ms)  CREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'
SQL (1.0ms)  CREATE EXTENSION IF NOT EXISTS "plpgsql"
 (2.4ms)  DROP TABLE IF EXISTS "pets" CASCADE
 (8.6ms)  CREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.8ms)  CREATE  INDEX  "index_pets_on_shelter_id" ON "pets"  ("shelter_id")
 (0.1ms)  DROP TABLE IF EXISTS "shelters" CASCADE
 (2.4ms)  CREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.1ms)  DROP TABLE IF EXISTS "veterinarians" CASCADE
 (2.3ms)  CREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.6ms)  CREATE  INDEX  "index_veterinarians_on_veterinary_office_id" ON "veterinarians"  ("veterinary_office_id")
 (0.1ms)  DROP TABLE IF EXISTS "veterinary_offices" CASCADE
 (2.4ms)  CREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (5.6ms)  ALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"

FOREIGN KEY (“shelter_id”)

REFERENCES "shelters" ("id")



 (1.1ms)  ALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"

FOREIGN KEY (“veterinary_office_id”)

REFERENCES "veterinary_offices" ("id")



 (2.3ms)  CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
 (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  INSERT INTO "schema_migrations" (version) VALUES (20210213001717)
 (0.4ms)  INSERT INTO "schema_migrations" (version) VALUES

(20210212235502), (20210213001632), (20210212235735);



 (2.0ms)  CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
ActiveRecord::InternalMetadata Load (0.3ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
ActiveRecord::InternalMetadata Create (5.1ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"  [["key", "environment"], ["value", "test"], ["created_at", "2021-10-23 20:56:41.406581"], ["updated_at", "2021-10-23 20:56:41.406581"]]
 (0.2ms)  COMMIT
ActiveRecord::InternalMetadata Load (0.2ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
 (0.1ms)  COMMIT
 (0.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-23 14:56:41 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.6ms)

Completed 200 OK in 838ms (Views: 834.5ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (8.8ms)

Completed 200 OK in 16ms (Views: 8.7ms | ActiveRecord: 5.8ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (2.6ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (4.4ms)

Completed 200 OK in 12ms (Views: 4.1ms | ActiveRecord: 5.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.5ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 7ms (Views: 2.5ms | ActiveRecord: 2.9ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 9ms (Views: 2.7ms | ActiveRecord: 2.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.3ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.576306"], ["updated_at", "2021-10-23 20:56:42.576306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/1/pets/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"1"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (2.5ms)

Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.591806"], ["updated_at", "2021-10-23 20:56:42.591806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/2/pets/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"2"}
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (1.0ms)

Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.4ms) Started POST “/shelters/2/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"2"}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Pet Create (4.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 2], ["created_at", "2021-10-23 20:56:42.635973"], ["updated_at", "2021-10-23 20:56:42.635973"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/2/pets Completed 302 Found in 24ms (ActiveRecord: 12.6ms) Started GET “/shelters/2/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"2"}
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (4.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 2], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (6.3ms)

Completed 200 OK in 12ms (Views: 3.0ms | ActiveRecord: 4.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.658292"], ["updated_at", "2021-10-23 20:56:42.658292"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/3/pets/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"3"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms) Started POST “/shelters/3/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"3"}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/3/pets/new Completed 302 Found in 4ms (ActiveRecord: 0.5ms) Started GET “/shelters/3/pets/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"3"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.677045"], ["updated_at", "2021-10-23 20:56:42.677045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 4], ["created_at", "2021-10-23 20:56:42.678817"], ["updated_at", "2021-10-23 20:56:42.678817"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 4], ["created_at", "2021-10-23 20:56:42.680261"], ["updated_at", "2021-10-23 20:56:42.680261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.700052"], ["updated_at", "2021-10-23 20:56:42.700052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 5], ["created_at", "2021-10-23 20:56:42.703082"], ["updated_at", "2021-10-23 20:56:42.703082"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 5], ["created_at", "2021-10-23 20:56:42.705654"], ["updated_at", "2021-10-23 20:56:42.705654"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 5], ["created_at", "2021-10-23 20:56:42.708011"], ["updated_at", "2021-10-23 20:56:42.708011"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.1ms)

Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.719243"], ["updated_at", "2021-10-23 20:56:42.719243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 6], ["created_at", "2021-10-23 20:56:42.721183"], ["updated_at", "2021-10-23 20:56:42.721183"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 6], ["created_at", "2021-10-23 20:56:42.723025"], ["updated_at", "2021-10-23 20:56:42.723025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.5ms) Started GET “/pets/7/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"7"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.4ms)

Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.742394"], ["updated_at", "2021-10-23 20:56:42.742394"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 7], ["created_at", "2021-10-23 20:56:42.744570"], ["updated_at", "2021-10-23 20:56:42.744570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 7], ["created_at", "2021-10-23 20:56:42.746633"], ["updated_at", "2021-10-23 20:56:42.746633"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.5ms)

Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.4ms) Started DELETE “/pets/9” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"9"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.2ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 9]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 0.7ms) Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.0ms)

Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.782427"], ["updated_at", "2021-10-23 20:56:42.782427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 8], ["created_at", "2021-10-23 20:56:42.784644"], ["updated_at", "2021-10-23 20:56:42.784644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 8], ["created_at", "2021-10-23 20:56:42.786921"], ["updated_at", "2021-10-23 20:56:42.786921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 8], ["created_at", "2021-10-23 20:56:42.788630"], ["updated_at", "2021-10-23 20:56:42.788630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.4ms)

Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.4ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (1.9ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (3.2ms)

Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 2.1ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.808259"], ["updated_at", "2021-10-23 20:56:42.808259"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 9], ["created_at", "2021-10-23 20:56:42.809889"], ["updated_at", "2021-10-23 20:56:42.809889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/14” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"14"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.819525"], ["updated_at", "2021-10-23 20:56:42.819525"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 10], ["created_at", "2021-10-23 20:56:42.821047"], ["updated_at", "2021-10-23 20:56:42.821047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/15” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"15"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 15], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms) Started DELETE “/pets/15” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"15"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 15], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.2ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 15]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 1ms (ActiveRecord: 0.7ms) Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-23 20:56:42.832116"], ["updated_at", "2021-10-23 20:56:42.832116"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 11], ["created_at", "2021-10-23 20:56:42.833830"], ["updated_at", "2021-10-23 20:56:42.833830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/16/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"16"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 16], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-23 20:56:42.839581"], ["updated_at", "2021-10-23 20:56:42.839581"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 12], ["created_at", "2021-10-23 20:56:42.841695"], ["updated_at", "2021-10-23 20:56:42.841695"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/17/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"17"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/pets/17” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"17"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Pet Update (0.6ms)  UPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6  [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-23 20:56:42.851054"], ["id", 17]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets/17 Completed 302 Found in 3ms (ActiveRecord: 0.9ms) Started GET “/pets/17” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"17"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-23 20:56:42.857329"], ["updated_at", "2021-10-23 20:56:42.857329"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 13], ["created_at", "2021-10-23 20:56:42.859070"], ["updated_at", "2021-10-23 20:56:42.859070"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/18/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"18"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 18], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/pets/18” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"18"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 18], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/pets/18/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/pets/18/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"18"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 18], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.5ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Shelter", "city"=>"Houston", "foster_program"=>"1", "rank"=>"7", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Houston Shelter"], ["city", "Houston"], ["rank", 7], ["created_at", "2021-10-23 20:56:42.888443"], ["updated_at", "2021-10-23 20:56:42.888443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"", "foster_program"=>"0", "rank"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/shelters/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/shelters/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.906724"], ["updated_at", "2021-10-23 20:56:42.906724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.907849"], ["updated_at", "2021-10-23 20:56:42.907849"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:42.908722"], ["updated_at", "2021-10-23 20:56:42.908722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 15], ["created_at", "2021-10-23 20:56:42.909964"], ["updated_at", "2021-10-23 20:56:42.909964"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 15], ["created_at", "2021-10-23 20:56:42.911214"], ["updated_at", "2021-10-23 20:56:42.911214"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 17], ["created_at", "2021-10-23 20:56:42.912407"], ["updated_at", "2021-10-23 20:56:42.912407"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.919218"], ["updated_at", "2021-10-23 20:56:42.919218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.920159"], ["updated_at", "2021-10-23 20:56:42.920159"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:42.921079"], ["updated_at", "2021-10-23 20:56:42.921079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 18], ["created_at", "2021-10-23 20:56:42.922248"], ["updated_at", "2021-10-23 20:56:42.922248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 18], ["created_at", "2021-10-23 20:56:42.923445"], ["updated_at", "2021-10-23 20:56:42.923445"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 20], ["created_at", "2021-10-23 20:56:42.924584"], ["updated_at", "2021-10-23 20:56:42.924584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.931828"], ["updated_at", "2021-10-23 20:56:42.931828"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.932851"], ["updated_at", "2021-10-23 20:56:42.932851"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:42.933769"], ["updated_at", "2021-10-23 20:56:42.933769"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 21], ["created_at", "2021-10-23 20:56:42.934961"], ["updated_at", "2021-10-23 20:56:42.934961"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 21], ["created_at", "2021-10-23 20:56:42.936107"], ["updated_at", "2021-10-23 20:56:42.936107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 23], ["created_at", "2021-10-23 20:56:42.937274"], ["updated_at", "2021-10-23 20:56:42.937274"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started GET “/shelters?sort=pet_count” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML

Parameters: {"sort"=>"pet_count"}
Rendering shelters/index.html.erb within layouts/application
Shelter Load (6.6ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
Rendered shelters/index.html.erb within layouts/application (9.5ms)

Completed 200 OK in 10ms (Views: 3.4ms | ActiveRecord: 6.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.956130"], ["updated_at", "2021-10-23 20:56:42.956130"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.957260"], ["updated_at", "2021-10-23 20:56:42.957260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:42.958118"], ["updated_at", "2021-10-23 20:56:42.958118"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 24], ["created_at", "2021-10-23 20:56:42.959420"], ["updated_at", "2021-10-23 20:56:42.959420"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 24], ["created_at", "2021-10-23 20:56:42.960483"], ["updated_at", "2021-10-23 20:56:42.960483"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 26], ["created_at", "2021-10-23 20:56:42.961628"], ["updated_at", "2021-10-23 20:56:42.961628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/shelters/24/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"24"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 24], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.1ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.973997"], ["updated_at", "2021-10-23 20:56:42.973997"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.976444"], ["updated_at", "2021-10-23 20:56:42.976444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:42.977566"], ["updated_at", "2021-10-23 20:56:42.977566"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 27], ["created_at", "2021-10-23 20:56:42.978725"], ["updated_at", "2021-10-23 20:56:42.978725"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 27], ["created_at", "2021-10-23 20:56:42.979900"], ["updated_at", "2021-10-23 20:56:42.979900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 29], ["created_at", "2021-10-23 20:56:42.980960"], ["updated_at", "2021-10-23 20:56:42.980960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started DELETE “/shelters/27” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#destroy as HTML

Parameters: {"id"=>"27"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 27], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 27]]
Pet Destroy (0.8ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 31]]
Pet Destroy (0.4ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 32]]
Shelter Destroy (0.8ms)  DELETE FROM "shelters" WHERE "shelters"."id" = $1  [["id", 27]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 4ms (ActiveRecord: 2.5ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.998834"], ["updated_at", "2021-10-23 20:56:42.998834"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.999925"], ["updated_at", "2021-10-23 20:56:42.999925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.000874"], ["updated_at", "2021-10-23 20:56:43.000874"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 30], ["created_at", "2021-10-23 20:56:43.002104"], ["updated_at", "2021-10-23 20:56:43.002104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 30], ["created_at", "2021-10-23 20:56:43.003421"], ["updated_at", "2021-10-23 20:56:43.003421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 32], ["created_at", "2021-10-23 20:56:43.004534"], ["updated_at", "2021-10-23 20:56:43.004534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.013342"], ["updated_at", "2021-10-23 20:56:43.013342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.014621"], ["updated_at", "2021-10-23 20:56:43.014621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.015585"], ["updated_at", "2021-10-23 20:56:43.015585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 33], ["created_at", "2021-10-23 20:56:43.017109"], ["updated_at", "2021-10-23 20:56:43.017109"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 33], ["created_at", "2021-10-23 20:56:43.018285"], ["updated_at", "2021-10-23 20:56:43.018285"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 35], ["created_at", "2021-10-23 20:56:43.019461"], ["updated_at", "2021-10-23 20:56:43.019461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started GET “/shelters?utf8=%E2%9C%93&search=RGV&commit=Search” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"RGV", "commit"=>"Search"}
Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%RGV%')
Rendered shelters/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.029783"], ["updated_at", "2021-10-23 20:56:43.029783"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.030995"], ["updated_at", "2021-10-23 20:56:43.030995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 36], ["created_at", "2021-10-23 20:56:43.032601"], ["updated_at", "2021-10-23 20:56:43.032601"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 36], ["created_at", "2021-10-23 20:56:43.034267"], ["updated_at", "2021-10-23 20:56:43.034267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 37], ["created_at", "2021-10-23 20:56:43.035827"], ["updated_at", "2021-10-23 20:56:43.035827"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 36], ["created_at", "2021-10-23 20:56:43.037565"], ["updated_at", "2021-10-23 20:56:43.037565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/36/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"36"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 36], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.053517"], ["updated_at", "2021-10-23 20:56:43.053517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.055116"], ["updated_at", "2021-10-23 20:56:43.055116"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 38], ["created_at", "2021-10-23 20:56:43.056403"], ["updated_at", "2021-10-23 20:56:43.056403"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 38], ["created_at", "2021-10-23 20:56:43.057720"], ["updated_at", "2021-10-23 20:56:43.057720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 39], ["created_at", "2021-10-23 20:56:43.059226"], ["updated_at", "2021-10-23 20:56:43.059226"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 38], ["created_at", "2021-10-23 20:56:43.060762"], ["updated_at", "2021-10-23 20:56:43.060762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/38/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"38"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 38], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started GET “/shelters/38/pets/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"38"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.071429"], ["updated_at", "2021-10-23 20:56:43.071429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.072503"], ["updated_at", "2021-10-23 20:56:43.072503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 40], ["created_at", "2021-10-23 20:56:43.073794"], ["updated_at", "2021-10-23 20:56:43.073794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 40], ["created_at", "2021-10-23 20:56:43.075129"], ["updated_at", "2021-10-23 20:56:43.075129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 41], ["created_at", "2021-10-23 20:56:43.076595"], ["updated_at", "2021-10-23 20:56:43.076595"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 40], ["created_at", "2021-10-23 20:56:43.077951"], ["updated_at", "2021-10-23 20:56:43.077951"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/40/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"40"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 40], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started GET “/pets/48/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"48"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.088003"], ["updated_at", "2021-10-23 20:56:43.088003"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.089113"], ["updated_at", "2021-10-23 20:56:43.089113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 42], ["created_at", "2021-10-23 20:56:43.090424"], ["updated_at", "2021-10-23 20:56:43.090424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 42], ["created_at", "2021-10-23 20:56:43.091663"], ["updated_at", "2021-10-23 20:56:43.091663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 43], ["created_at", "2021-10-23 20:56:43.092937"], ["updated_at", "2021-10-23 20:56:43.092937"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 42], ["created_at", "2021-10-23 20:56:43.095038"], ["updated_at", "2021-10-23 20:56:43.095038"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/42/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"42"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 42], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started DELETE “/pets/52” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"52"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.4ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 52]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.3ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.110148"], ["updated_at", "2021-10-23 20:56:43.110148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.111504"], ["updated_at", "2021-10-23 20:56:43.111504"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 44], ["created_at", "2021-10-23 20:56:43.113035"], ["updated_at", "2021-10-23 20:56:43.113035"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 44], ["created_at", "2021-10-23 20:56:43.114681"], ["updated_at", "2021-10-23 20:56:43.114681"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 45], ["created_at", "2021-10-23 20:56:43.116237"], ["updated_at", "2021-10-23 20:56:43.116237"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 44], ["created_at", "2021-10-23 20:56:43.117767"], ["updated_at", "2021-10-23 20:56:43.117767"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/44/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"44"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 44], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.125512"], ["updated_at", "2021-10-23 20:56:43.125512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.126833"], ["updated_at", "2021-10-23 20:56:43.126833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 46], ["created_at", "2021-10-23 20:56:43.128454"], ["updated_at", "2021-10-23 20:56:43.128454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 46], ["created_at", "2021-10-23 20:56:43.130135"], ["updated_at", "2021-10-23 20:56:43.130135"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 47], ["created_at", "2021-10-23 20:56:43.131702"], ["updated_at", "2021-10-23 20:56:43.131702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 46], ["created_at", "2021-10-23 20:56:43.133244"], ["updated_at", "2021-10-23 20:56:43.133244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/46/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"46"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 46], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/shelters/46/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML

Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"46"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')  [["shelter_id", 46], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.147568"], ["updated_at", "2021-10-23 20:56:43.147568"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.149228"], ["updated_at", "2021-10-23 20:56:43.149228"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 48], ["created_at", "2021-10-23 20:56:43.150621"], ["updated_at", "2021-10-23 20:56:43.150621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 48], ["created_at", "2021-10-23 20:56:43.151878"], ["updated_at", "2021-10-23 20:56:43.151878"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 49], ["created_at", "2021-10-23 20:56:43.153437"], ["updated_at", "2021-10-23 20:56:43.153437"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 48], ["created_at", "2021-10-23 20:56:43.154989"], ["updated_at", "2021-10-23 20:56:43.154989"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/48/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"48"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 48], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/shelters/48/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML

Parameters: {"sort"=>"alphabetical", "shelter_id"=>"48"}
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 48], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.3ms)

Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 1.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.169072"], ["updated_at", "2021-10-23 20:56:43.169072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/50” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"50"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.6ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 50]]
Rendered shelters/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.7ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.177012"], ["updated_at", "2021-10-23 20:56:43.177012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 51], ["created_at", "2021-10-23 20:56:43.178436"], ["updated_at", "2021-10-23 20:56:43.178436"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/51” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"51"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 51]]
Rendered shelters/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)

 (0.2ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 51]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.184584"], ["updated_at", "2021-10-23 20:56:43.184584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/52” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"52"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 52]]
Rendered shelters/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.4ms) Started DELETE “/shelters/52” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#destroy as HTML

Parameters: {"id"=>"52"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 52]]
Shelter Destroy (0.4ms)  DELETE FROM "shelters" WHERE "shelters"."id" = $1  [["id", 52]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.196674"], ["updated_at", "2021-10-23 20:56:43.196674"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/53” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"53"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 53]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms) Started GET “/shelters/53/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"53"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 53], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.206441"], ["updated_at", "2021-10-23 20:56:43.206441"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/54/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"54"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.212561"], ["updated_at", "2021-10-23 20:56:43.212561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/55/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"55"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms) Started PATCH “/shelters/55” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita Shelter", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"10", "commit"=>"Save ", "id"=>"55"}

Unpermitted parameters: :utf8, :_method, :commit

Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Update (0.6ms)  UPDATE "shelters" SET "name" = $1, "city" = $2, "rank" = $3, "updated_at" = $4 WHERE "shelters"."id" = $5  [["name", "Wichita Shelter"], ["city", "Wichita"], ["rank", 10], ["updated_at", "2021-10-23 20:56:43.224800"], ["id", 55]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.1ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.231249"], ["updated_at", "2021-10-23 20:56:43.231249"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/56/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"56"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/shelters/56” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"", "commit"=>"Save ", "id"=>"56"}

Unpermitted parameters: :utf8, :_method, :commit

Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/shelters/56/edit Completed 302 Found in 2ms (ActiveRecord: 0.4ms) Started GET “/shelters/56/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"56"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (1.0ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.257053"], ["updated_at", "2021-10-23 20:56:43.257053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/1/veterinarians/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"1"}
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.9ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.266360"], ["updated_at", "2021-10-23 20:56:43.266360"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/2/veterinarians/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"2"}
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms) Started POST “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"2"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.5ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 2], ["created_at", "2021-10-23 20:56:43.288144"], ["updated_at", "2021-10-23 20:56:43.288144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/2/veterinarians Completed 302 Found in 14ms (ActiveRecord: 8.1ms) Started GET “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"2"}
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 2], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.298199"], ["updated_at", "2021-10-23 20:56:43.298199"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"3"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/3/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"3"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/3/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.7ms) Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"3"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.314236"], ["updated_at", "2021-10-23 20:56:43.314236"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 4], ["created_at", "2021-10-23 20:56:43.315997"], ["updated_at", "2021-10-23 20:56:43.315997"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 4], ["created_at", "2021-10-23 20:56:43.317329"], ["updated_at", "2021-10-23 20:56:43.317329"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.325317"], ["updated_at", "2021-10-23 20:56:43.325317"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 5], ["created_at", "2021-10-23 20:56:43.326779"], ["updated_at", "2021-10-23 20:56:43.326779"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 5], ["created_at", "2021-10-23 20:56:43.328407"], ["updated_at", "2021-10-23 20:56:43.328407"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.333093"], ["updated_at", "2021-10-23 20:56:43.333093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 6], ["created_at", "2021-10-23 20:56:43.334508"], ["updated_at", "2021-10-23 20:56:43.334508"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 6], ["created_at", "2021-10-23 20:56:43.336542"], ["updated_at", "2021-10-23 20:56:43.336542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/veterinarians/6/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"6"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.347978"], ["updated_at", "2021-10-23 20:56:43.347978"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 7], ["created_at", "2021-10-23 20:56:43.349463"], ["updated_at", "2021-10-23 20:56:43.349463"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 7], ["created_at", "2021-10-23 20:56:43.351098"], ["updated_at", "2021-10-23 20:56:43.351098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started DELETE “/veterinarians/8” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"8"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 8]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.362909"], ["updated_at", "2021-10-23 20:56:43.362909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 8], ["created_at", "2021-10-23 20:56:43.364375"], ["updated_at", "2021-10-23 20:56:43.364375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/10” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"10"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.371761"], ["updated_at", "2021-10-23 20:56:43.371761"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 9], ["created_at", "2021-10-23 20:56:43.373043"], ["updated_at", "2021-10-23 20:56:43.373043"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/11” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"11"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms) Started DELETE “/veterinarians/11” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"11"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 11]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.7ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (0.3ms)

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-23 20:56:43.384054"], ["updated_at", "2021-10-23 20:56:43.384054"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 10], ["created_at", "2021-10-23 20:56:43.385374"], ["updated_at", "2021-10-23 20:56:43.385374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/12/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"12"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-23 20:56:43.391893"], ["updated_at", "2021-10-23 20:56:43.391893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 11], ["created_at", "2021-10-23 20:56:43.393522"], ["updated_at", "2021-10-23 20:56:43.393522"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/13/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"13"}
Veterinarian Load (0.1ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started PATCH “/veterinarians/13” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"13"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Veterinarian Update (0.4ms)  UPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5  [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-23 20:56:43.403552"], ["id", 13]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/13 Completed 302 Found in 3ms (ActiveRecord: 1.0ms) Started GET “/veterinarians/13” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"13"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-23 20:56:43.409586"], ["updated_at", "2021-10-23 20:56:43.409586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 12], ["created_at", "2021-10-23 20:56:43.411066"], ["updated_at", "2021-10-23 20:56:43.411066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"14"}
Veterinarian Load (0.1ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/veterinarians/14” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"14"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/14/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"14"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-23 20:56:43.439650"], ["updated_at", "2021-10-23 20:56:43.439650"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.5ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.1ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-23 20:56:43.456486"], ["updated_at", "2021-10-23 20:56:43.456486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-23 20:56:43.457830"], ["updated_at", "2021-10-23 20:56:43.457830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.458679"], ["updated_at", "2021-10-23 20:56:43.458679"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 14], ["created_at", "2021-10-23 20:56:43.459711"], ["updated_at", "2021-10-23 20:56:43.459711"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 14], ["created_at", "2021-10-23 20:56:43.460764"], ["updated_at", "2021-10-23 20:56:43.460764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 16], ["created_at", "2021-10-23 20:56:43.462084"], ["updated_at", "2021-10-23 20:56:43.462084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-23 20:56:43.469005"], ["updated_at", "2021-10-23 20:56:43.469005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-23 20:56:43.470382"], ["updated_at", "2021-10-23 20:56:43.470382"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.471388"], ["updated_at", "2021-10-23 20:56:43.471388"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 17], ["created_at", "2021-10-23 20:56:43.472656"], ["updated_at", "2021-10-23 20:56:43.472656"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 17], ["created_at", "2021-10-23 20:56:43.474198"], ["updated_at", "2021-10-23 20:56:43.474198"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 19], ["created_at", "2021-10-23 20:56:43.475762"], ["updated_at", "2021-10-23 20:56:43.475762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-23 20:56:43.483747"], ["updated_at", "2021-10-23 20:56:43.483747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-23 20:56:43.485046"], ["updated_at", "2021-10-23 20:56:43.485046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.486059"], ["updated_at", "2021-10-23 20:56:43.486059"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 20], ["created_at", "2021-10-23 20:56:43.487395"], ["updated_at", "2021-10-23 20:56:43.487395"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 20], ["created_at", "2021-10-23 20:56:43.488696"], ["updated_at", "2021-10-23 20:56:43.488696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 22], ["created_at", "2021-10-23 20:56:43.490044"], ["updated_at", "2021-10-23 20:56:43.490044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.5ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML

Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (1.9ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
Rendered veterinary_offices/index.html.erb within layouts/application (2.5ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-23 20:56:43.502108"], ["updated_at", "2021-10-23 20:56:43.502108"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-23 20:56:43.503119"], ["updated_at", "2021-10-23 20:56:43.503119"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.503912"], ["updated_at", "2021-10-23 20:56:43.503912"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 23], ["created_at", "2021-10-23 20:56:43.505113"], ["updated_at", "2021-10-23 20:56:43.505113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 23], ["created_at", "2021-10-23 20:56:43.506384"], ["updated_at", "2021-10-23 20:56:43.506384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 25], ["created_at", "2021-10-23 20:56:43.507623"], ["updated_at", "2021-10-23 20:56:43.507623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/23/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"23"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.9ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-23 20:56:43.519074"], ["updated_at", "2021-10-23 20:56:43.519074"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-23 20:56:43.520057"], ["updated_at", "2021-10-23 20:56:43.520057"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.520933"], ["updated_at", "2021-10-23 20:56:43.520933"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 26], ["created_at", "2021-10-23 20:56:43.522104"], ["updated_at", "2021-10-23 20:56:43.522104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 26], ["created_at", "2021-10-23 20:56:43.523334"], ["updated_at", "2021-10-23 20:56:43.523334"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 28], ["created_at", "2021-10-23 20:56:43.524458"], ["updated_at", "2021-10-23 20:56:43.524458"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.3ms) Started DELETE “/veterinary_offices/26” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"26"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 26], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 26]]
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 27]]
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 28]]
VeterinaryOffice Destroy (0.6ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 26]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 3ms (ActiveRecord: 1.7ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.539115"], ["updated_at", "2021-10-23 20:56:43.539115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/29” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"29"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 29]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.546222"], ["updated_at", "2021-10-23 20:56:43.546222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/30” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"30"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 30], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 30]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)

 (0.2ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 30]]
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-23 20:56:43.551580"], ["updated_at", "2021-10-23 20:56:43.551580"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/31” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"31"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.2ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 31]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms) Started DELETE “/veterinary_offices/31” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"31"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 31]]
VeterinaryOffice Destroy (0.4ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 31]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-23 20:56:43.563140"], ["updated_at", "2021-10-23 20:56:43.563140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/32” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"32"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 32]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/32/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"32"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 32], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-23 20:56:43.571547"], ["updated_at", "2021-10-23 20:56:43.571547"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/33/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"33"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-23 20:56:43.577343"], ["updated_at", "2021-10-23 20:56:43.577343"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/34/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"34"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/34” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"34"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Update (0.5ms)  UPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4  [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-23 20:56:43.585866"], ["id", 34]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-23 20:56:43.592267"], ["updated_at", "2021-10-23 20:56:43.592267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"35"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/35” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"35"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/35/edit Completed 302 Found in 2ms (ActiveRecord: 0.3ms) Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"35"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.609956"], ["updated_at", "2021-10-23 20:56:43.609956"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.611015"], ["updated_at", "2021-10-23 20:56:43.611015"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-23 20:56:43.612289"], ["updated_at", "2021-10-23 20:56:43.612289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-23 20:56:43.613809"], ["updated_at", "2021-10-23 20:56:43.613809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 36], ["created_at", "2021-10-23 20:56:43.615072"], ["updated_at", "2021-10-23 20:56:43.615072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 37], ["created_at", "2021-10-23 20:56:43.616379"], ["updated_at", "2021-10-23 20:56:43.616379"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 37], ["created_at", "2021-10-23 20:56:43.617567"], ["updated_at", "2021-10-23 20:56:43.617567"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/36/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"36"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 36], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.624945"], ["updated_at", "2021-10-23 20:56:43.624945"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.625923"], ["updated_at", "2021-10-23 20:56:43.625923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-23 20:56:43.627226"], ["updated_at", "2021-10-23 20:56:43.627226"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-23 20:56:43.628562"], ["updated_at", "2021-10-23 20:56:43.628562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 38], ["created_at", "2021-10-23 20:56:43.629840"], ["updated_at", "2021-10-23 20:56:43.629840"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 39], ["created_at", "2021-10-23 20:56:43.631118"], ["updated_at", "2021-10-23 20:56:43.631118"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 39], ["created_at", "2021-10-23 20:56:43.632373"], ["updated_at", "2021-10-23 20:56:43.632373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/38/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"38"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 38], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.4ms) Started GET “/veterinarians/36/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"36"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.641614"], ["updated_at", "2021-10-23 20:56:43.641614"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.642770"], ["updated_at", "2021-10-23 20:56:43.642770"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-23 20:56:43.644388"], ["updated_at", "2021-10-23 20:56:43.644388"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-23 20:56:43.645896"], ["updated_at", "2021-10-23 20:56:43.645896"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 40], ["created_at", "2021-10-23 20:56:43.647505"], ["updated_at", "2021-10-23 20:56:43.647505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 41], ["created_at", "2021-10-23 20:56:43.649041"], ["updated_at", "2021-10-23 20:56:43.649041"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 41], ["created_at", "2021-10-23 20:56:43.650684"], ["updated_at", "2021-10-23 20:56:43.650684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/40/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"40"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 40], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started DELETE “/veterinarians/41” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"41"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.6ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 41]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.664435"], ["updated_at", "2021-10-23 20:56:43.664435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.665657"], ["updated_at", "2021-10-23 20:56:43.665657"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-23 20:56:43.667121"], ["updated_at", "2021-10-23 20:56:43.667121"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-23 20:56:43.668767"], ["updated_at", "2021-10-23 20:56:43.668767"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 42], ["created_at", "2021-10-23 20:56:43.670324"], ["updated_at", "2021-10-23 20:56:43.670324"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 43], ["created_at", "2021-10-23 20:56:43.671523"], ["updated_at", "2021-10-23 20:56:43.671523"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 43], ["created_at", "2021-10-23 20:56:43.672628"], ["updated_at", "2021-10-23 20:56:43.672628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/42/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"42"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.7ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 42], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.0ms) Started GET “/veterinary_offices/42/veterinarians/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"42"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.683062"], ["updated_at", "2021-10-23 20:56:43.683062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.684392"], ["updated_at", "2021-10-23 20:56:43.684392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-23 20:56:43.686185"], ["updated_at", "2021-10-23 20:56:43.686185"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-23 20:56:43.687447"], ["updated_at", "2021-10-23 20:56:43.687447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 44], ["created_at", "2021-10-23 20:56:43.688596"], ["updated_at", "2021-10-23 20:56:43.688596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 45], ["created_at", "2021-10-23 20:56:43.689853"], ["updated_at", "2021-10-23 20:56:43.689853"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 45], ["created_at", "2021-10-23 20:56:43.691664"], ["updated_at", "2021-10-23 20:56:43.691664"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/44/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"44"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 44], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.699039"], ["updated_at", "2021-10-23 20:56:43.699039"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.700175"], ["updated_at", "2021-10-23 20:56:43.700175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-23 20:56:43.701592"], ["updated_at", "2021-10-23 20:56:43.701592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-23 20:56:43.703103"], ["updated_at", "2021-10-23 20:56:43.703103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 46], ["created_at", "2021-10-23 20:56:43.704245"], ["updated_at", "2021-10-23 20:56:43.704245"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 47], ["created_at", "2021-10-23 20:56:43.705370"], ["updated_at", "2021-10-23 20:56:43.705370"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 47], ["created_at", "2021-10-23 20:56:43.707066"], ["updated_at", "2021-10-23 20:56:43.707066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/46/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"46"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/46/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"46"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.6ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')  [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.8ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.720832"], ["updated_at", "2021-10-23 20:56:43.720832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.722049"], ["updated_at", "2021-10-23 20:56:43.722049"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-23 20:56:43.723938"], ["updated_at", "2021-10-23 20:56:43.723938"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-23 20:56:43.725552"], ["updated_at", "2021-10-23 20:56:43.725552"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 48], ["created_at", "2021-10-23 20:56:43.727061"], ["updated_at", "2021-10-23 20:56:43.727061"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 49], ["created_at", "2021-10-23 20:56:43.728550"], ["updated_at", "2021-10-23 20:56:43.728550"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 49], ["created_at", "2021-10-23 20:56:43.730143"], ["updated_at", "2021-10-23 20:56:43.730143"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/49/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"49"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/49/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"49"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.744644"], ["updated_at", "2021-10-23 20:56:43.744644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 57], ["created_at", "2021-10-23 20:56:43.746213"], ["updated_at", "2021-10-23 20:56:43.746213"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 57], ["created_at", "2021-10-23 20:56:43.747661"], ["updated_at", "2021-10-23 20:56:43.747661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 57], ["created_at", "2021-10-23 20:56:43.748989"], ["updated_at", "2021-10-23 20:56:43.748989"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.753008"], ["updated_at", "2021-10-23 20:56:43.753008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 58], ["created_at", "2021-10-23 20:56:43.754451"], ["updated_at", "2021-10-23 20:56:43.754451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 58], ["created_at", "2021-10-23 20:56:43.755840"], ["updated_at", "2021-10-23 20:56:43.755840"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 58], ["created_at", "2021-10-23 20:56:43.757164"], ["updated_at", "2021-10-23 20:56:43.757164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.762782"], ["updated_at", "2021-10-23 20:56:43.762782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 59], ["created_at", "2021-10-23 20:56:43.764406"], ["updated_at", "2021-10-23 20:56:43.764406"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 59], ["created_at", "2021-10-23 20:56:43.765733"], ["updated_at", "2021-10-23 20:56:43.765733"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 59], ["created_at", "2021-10-23 20:56:43.767023"], ["updated_at", "2021-10-23 20:56:43.767023"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.771161"], ["updated_at", "2021-10-23 20:56:43.771161"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 60], ["created_at", "2021-10-23 20:56:43.772476"], ["updated_at", "2021-10-23 20:56:43.772476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 60], ["created_at", "2021-10-23 20:56:43.773853"], ["updated_at", "2021-10-23 20:56:43.773853"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 60], ["created_at", "2021-10-23 20:56:43.775638"], ["updated_at", "2021-10-23 20:56:43.775638"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.778830"], ["updated_at", "2021-10-23 20:56:43.778830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 61], ["created_at", "2021-10-23 20:56:43.780124"], ["updated_at", "2021-10-23 20:56:43.780124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 61], ["created_at", "2021-10-23 20:56:43.781495"], ["updated_at", "2021-10-23 20:56:43.781495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 61], ["created_at", "2021-10-23 20:56:43.782863"], ["updated_at", "2021-10-23 20:56:43.782863"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.786269"], ["updated_at", "2021-10-23 20:56:43.786269"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 62], ["created_at", "2021-10-23 20:56:43.787372"], ["updated_at", "2021-10-23 20:56:43.787372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 62], ["created_at", "2021-10-23 20:56:43.788379"], ["updated_at", "2021-10-23 20:56:43.788379"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 62], ["created_at", "2021-10-23 20:56:43.789639"], ["updated_at", "2021-10-23 20:56:43.789639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.792158"], ["updated_at", "2021-10-23 20:56:43.792158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 63], ["created_at", "2021-10-23 20:56:43.793653"], ["updated_at", "2021-10-23 20:56:43.793653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 63], ["created_at", "2021-10-23 20:56:43.795198"], ["updated_at", "2021-10-23 20:56:43.795198"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 63], ["created_at", "2021-10-23 20:56:43.796289"], ["updated_at", "2021-10-23 20:56:43.796289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.798331"], ["updated_at", "2021-10-23 20:56:43.798331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.799223"], ["updated_at", "2021-10-23 20:56:43.799223"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.800070"], ["updated_at", "2021-10-23 20:56:43.800070"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 64], ["created_at", "2021-10-23 20:56:43.801428"], ["updated_at", "2021-10-23 20:56:43.801428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 64], ["created_at", "2021-10-23 20:56:43.802730"], ["updated_at", "2021-10-23 20:56:43.802730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 66], ["created_at", "2021-10-23 20:56:43.803825"], ["updated_at", "2021-10-23 20:56:43.803825"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 64], ["created_at", "2021-10-23 20:56:43.804923"], ["updated_at", "2021-10-23 20:56:43.804923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.807439"], ["updated_at", "2021-10-23 20:56:43.807439"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.808505"], ["updated_at", "2021-10-23 20:56:43.808505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.809366"], ["updated_at", "2021-10-23 20:56:43.809366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 67], ["created_at", "2021-10-23 20:56:43.810517"], ["updated_at", "2021-10-23 20:56:43.810517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 67], ["created_at", "2021-10-23 20:56:43.811576"], ["updated_at", "2021-10-23 20:56:43.811576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 69], ["created_at", "2021-10-23 20:56:43.812730"], ["updated_at", "2021-10-23 20:56:43.812730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 67], ["created_at", "2021-10-23 20:56:43.814029"], ["updated_at", "2021-10-23 20:56:43.814029"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.819488"], ["updated_at", "2021-10-23 20:56:43.819488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.820520"], ["updated_at", "2021-10-23 20:56:43.820520"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.821603"], ["updated_at", "2021-10-23 20:56:43.821603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 70], ["created_at", "2021-10-23 20:56:43.822898"], ["updated_at", "2021-10-23 20:56:43.822898"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 70], ["created_at", "2021-10-23 20:56:43.824212"], ["updated_at", "2021-10-23 20:56:43.824212"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 72], ["created_at", "2021-10-23 20:56:43.825465"], ["updated_at", "2021-10-23 20:56:43.825465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 70], ["created_at", "2021-10-23 20:56:43.826517"], ["updated_at", "2021-10-23 20:56:43.826517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.831958"], ["updated_at", "2021-10-23 20:56:43.831958"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.833176"], ["updated_at", "2021-10-23 20:56:43.833176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.834284"], ["updated_at", "2021-10-23 20:56:43.834284"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 73], ["created_at", "2021-10-23 20:56:43.835623"], ["updated_at", "2021-10-23 20:56:43.835623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 73], ["created_at", "2021-10-23 20:56:43.836977"], ["updated_at", "2021-10-23 20:56:43.836977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 75], ["created_at", "2021-10-23 20:56:43.838358"], ["updated_at", "2021-10-23 20:56:43.838358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 73], ["created_at", "2021-10-23 20:56:43.839722"], ["updated_at", "2021-10-23 20:56:43.839722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.844223"], ["updated_at", "2021-10-23 20:56:43.844223"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.845347"], ["updated_at", "2021-10-23 20:56:43.845347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.846323"], ["updated_at", "2021-10-23 20:56:43.846323"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 76], ["created_at", "2021-10-23 20:56:43.847574"], ["updated_at", "2021-10-23 20:56:43.847574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 76], ["created_at", "2021-10-23 20:56:43.848794"], ["updated_at", "2021-10-23 20:56:43.848794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 78], ["created_at", "2021-10-23 20:56:43.850067"], ["updated_at", "2021-10-23 20:56:43.850067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 76], ["created_at", "2021-10-23 20:56:43.851372"], ["updated_at", "2021-10-23 20:56:43.851372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.854521"], ["updated_at", "2021-10-23 20:56:43.854521"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.855785"], ["updated_at", "2021-10-23 20:56:43.855785"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.856970"], ["updated_at", "2021-10-23 20:56:43.856970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 79], ["created_at", "2021-10-23 20:56:43.858307"], ["updated_at", "2021-10-23 20:56:43.858307"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 79], ["created_at", "2021-10-23 20:56:43.859342"], ["updated_at", "2021-10-23 20:56:43.859342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 81], ["created_at", "2021-10-23 20:56:43.860682"], ["updated_at", "2021-10-23 20:56:43.860682"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 79], ["created_at", "2021-10-23 20:56:43.861966"], ["updated_at", "2021-10-23 20:56:43.861966"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.864791"], ["updated_at", "2021-10-23 20:56:43.864791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.865954"], ["updated_at", "2021-10-23 20:56:43.865954"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.867047"], ["updated_at", "2021-10-23 20:56:43.867047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 82], ["created_at", "2021-10-23 20:56:43.868369"], ["updated_at", "2021-10-23 20:56:43.868369"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 82], ["created_at", "2021-10-23 20:56:43.869950"], ["updated_at", "2021-10-23 20:56:43.869950"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 84], ["created_at", "2021-10-23 20:56:43.871391"], ["updated_at", "2021-10-23 20:56:43.871391"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 82], ["created_at", "2021-10-23 20:56:43.872632"], ["updated_at", "2021-10-23 20:56:43.872632"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.875174"], ["updated_at", "2021-10-23 20:56:43.875174"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.876409"], ["updated_at", "2021-10-23 20:56:43.876409"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.877524"], ["updated_at", "2021-10-23 20:56:43.877524"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 85], ["created_at", "2021-10-23 20:56:43.878895"], ["updated_at", "2021-10-23 20:56:43.878895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 85], ["created_at", "2021-10-23 20:56:43.880392"], ["updated_at", "2021-10-23 20:56:43.880392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 87], ["created_at", "2021-10-23 20:56:43.881935"], ["updated_at", "2021-10-23 20:56:43.881935"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 85], ["created_at", "2021-10-23 20:56:43.883512"], ["updated_at", "2021-10-23 20:56:43.883512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.3ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.889668"], ["updated_at", "2021-10-23 20:56:43.889668"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.891175"], ["updated_at", "2021-10-23 20:56:43.891175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.892385"], ["updated_at", "2021-10-23 20:56:43.892385"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 88], ["created_at", "2021-10-23 20:56:43.893854"], ["updated_at", "2021-10-23 20:56:43.893854"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 88], ["created_at", "2021-10-23 20:56:43.895414"], ["updated_at", "2021-10-23 20:56:43.895414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 90], ["created_at", "2021-10-23 20:56:43.897178"], ["updated_at", "2021-10-23 20:56:43.897178"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 88], ["created_at", "2021-10-23 20:56:43.898500"], ["updated_at", "2021-10-23 20:56:43.898500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 88], ["adoptable", true]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.901032"], ["updated_at", "2021-10-23 20:56:43.901032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.902233"], ["updated_at", "2021-10-23 20:56:43.902233"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.903374"], ["updated_at", "2021-10-23 20:56:43.903374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 91], ["created_at", "2021-10-23 20:56:43.904746"], ["updated_at", "2021-10-23 20:56:43.904746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 91], ["created_at", "2021-10-23 20:56:43.906218"], ["updated_at", "2021-10-23 20:56:43.906218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 93], ["created_at", "2021-10-23 20:56:43.908138"], ["updated_at", "2021-10-23 20:56:43.908138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 91], ["created_at", "2021-10-23 20:56:43.909252"], ["updated_at", "2021-10-23 20:56:43.909252"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 91], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.911937"], ["updated_at", "2021-10-23 20:56:43.911937"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.913131"], ["updated_at", "2021-10-23 20:56:43.913131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.914253"], ["updated_at", "2021-10-23 20:56:43.914253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 94], ["created_at", "2021-10-23 20:56:43.915630"], ["updated_at", "2021-10-23 20:56:43.915630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 94], ["created_at", "2021-10-23 20:56:43.917032"], ["updated_at", "2021-10-23 20:56:43.917032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 96], ["created_at", "2021-10-23 20:56:43.918469"], ["updated_at", "2021-10-23 20:56:43.918469"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 94], ["created_at", "2021-10-23 20:56:43.919818"], ["updated_at", "2021-10-23 20:56:43.919818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 94], ["adoptable", true]]
 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.923157"], ["updated_at", "2021-10-23 20:56:43.923157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.924407"], ["updated_at", "2021-10-23 20:56:43.924407"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.925353"], ["updated_at", "2021-10-23 20:56:43.925353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 97], ["created_at", "2021-10-23 20:56:43.926492"], ["updated_at", "2021-10-23 20:56:43.926492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 97], ["created_at", "2021-10-23 20:56:43.927646"], ["updated_at", "2021-10-23 20:56:43.927646"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 99], ["created_at", "2021-10-23 20:56:43.928883"], ["updated_at", "2021-10-23 20:56:43.928883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 97], ["created_at", "2021-10-23 20:56:43.930032"], ["updated_at", "2021-10-23 20:56:43.930032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 97]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.932783"], ["updated_at", "2021-10-23 20:56:43.932783"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 50], ["created_at", "2021-10-23 20:56:43.934269"], ["updated_at", "2021-10-23 20:56:43.934269"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 50], ["created_at", "2021-10-23 20:56:43.935677"], ["updated_at", "2021-10-23 20:56:43.935677"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 50], ["created_at", "2021-10-23 20:56:43.937237"], ["updated_at", "2021-10-23 20:56:43.937237"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 50], ["created_at", "2021-10-23 20:56:43.938623"], ["updated_at", "2021-10-23 20:56:43.938623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.942358"], ["updated_at", "2021-10-23 20:56:43.942358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 51], ["created_at", "2021-10-23 20:56:43.943738"], ["updated_at", "2021-10-23 20:56:43.943738"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 51], ["created_at", "2021-10-23 20:56:43.945076"], ["updated_at", "2021-10-23 20:56:43.945076"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 51], ["created_at", "2021-10-23 20:56:43.946430"], ["updated_at", "2021-10-23 20:56:43.946430"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 51], ["created_at", "2021-10-23 20:56:43.947979"], ["updated_at", "2021-10-23 20:56:43.947979"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.953559"], ["updated_at", "2021-10-23 20:56:43.953559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 52], ["created_at", "2021-10-23 20:56:43.954895"], ["updated_at", "2021-10-23 20:56:43.954895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 52], ["created_at", "2021-10-23 20:56:43.956309"], ["updated_at", "2021-10-23 20:56:43.956309"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 52], ["created_at", "2021-10-23 20:56:43.957536"], ["updated_at", "2021-10-23 20:56:43.957536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 52], ["created_at", "2021-10-23 20:56:43.958539"], ["updated_at", "2021-10-23 20:56:43.958539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.963007"], ["updated_at", "2021-10-23 20:56:43.963007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 53], ["created_at", "2021-10-23 20:56:43.964494"], ["updated_at", "2021-10-23 20:56:43.964494"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 53], ["created_at", "2021-10-23 20:56:43.965858"], ["updated_at", "2021-10-23 20:56:43.965858"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 53], ["created_at", "2021-10-23 20:56:43.967196"], ["updated_at", "2021-10-23 20:56:43.967196"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 53], ["created_at", "2021-10-23 20:56:43.968516"], ["updated_at", "2021-10-23 20:56:43.968516"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.971839"], ["updated_at", "2021-10-23 20:56:43.971839"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 54], ["created_at", "2021-10-23 20:56:43.973029"], ["updated_at", "2021-10-23 20:56:43.973029"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (1.1ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 54], ["created_at", "2021-10-23 20:56:43.974267"], ["updated_at", "2021-10-23 20:56:43.974267"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 54], ["created_at", "2021-10-23 20:56:43.976260"], ["updated_at", "2021-10-23 20:56:43.976260"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 54], ["created_at", "2021-10-23 20:56:43.977864"], ["updated_at", "2021-10-23 20:56:43.977864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.980786"], ["updated_at", "2021-10-23 20:56:43.980786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 55], ["created_at", "2021-10-23 20:56:43.982221"], ["updated_at", "2021-10-23 20:56:43.982221"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 55], ["created_at", "2021-10-23 20:56:43.983843"], ["updated_at", "2021-10-23 20:56:43.983843"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 55], ["created_at", "2021-10-23 20:56:43.985231"], ["updated_at", "2021-10-23 20:56:43.985231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 55], ["created_at", "2021-10-23 20:56:43.986418"], ["updated_at", "2021-10-23 20:56:43.986418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.988954"], ["updated_at", "2021-10-23 20:56:43.988954"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 56], ["created_at", "2021-10-23 20:56:43.990379"], ["updated_at", "2021-10-23 20:56:43.990379"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 56], ["created_at", "2021-10-23 20:56:43.991798"], ["updated_at", "2021-10-23 20:56:43.991798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 56], ["created_at", "2021-10-23 20:56:43.993134"], ["updated_at", "2021-10-23 20:56:43.993134"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 56], ["created_at", "2021-10-23 20:56:43.994454"], ["updated_at", "2021-10-23 20:56:43.994454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.996478"], ["updated_at", "2021-10-23 20:56:43.996478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.997678"], ["updated_at", "2021-10-23 20:56:43.997678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 57], ["created_at", "2021-10-23 20:56:43.999298"], ["updated_at", "2021-10-23 20:56:43.999298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 57], ["created_at", "2021-10-23 20:56:44.000986"], ["updated_at", "2021-10-23 20:56:44.000986"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 57], ["created_at", "2021-10-23 20:56:44.002619"], ["updated_at", "2021-10-23 20:56:44.002619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 58], ["created_at", "2021-10-23 20:56:44.004245"], ["updated_at", "2021-10-23 20:56:44.004245"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.006399"], ["updated_at", "2021-10-23 20:56:44.006399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.007721"], ["updated_at", "2021-10-23 20:56:44.007721"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 59], ["created_at", "2021-10-23 20:56:44.009155"], ["updated_at", "2021-10-23 20:56:44.009155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 59], ["created_at", "2021-10-23 20:56:44.010503"], ["updated_at", "2021-10-23 20:56:44.010503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 59], ["created_at", "2021-10-23 20:56:44.012096"], ["updated_at", "2021-10-23 20:56:44.012096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 60], ["created_at", "2021-10-23 20:56:44.013696"], ["updated_at", "2021-10-23 20:56:44.013696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.019186"], ["updated_at", "2021-10-23 20:56:44.019186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.020433"], ["updated_at", "2021-10-23 20:56:44.020433"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 61], ["created_at", "2021-10-23 20:56:44.022047"], ["updated_at", "2021-10-23 20:56:44.022047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 61], ["created_at", "2021-10-23 20:56:44.023658"], ["updated_at", "2021-10-23 20:56:44.023658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 61], ["created_at", "2021-10-23 20:56:44.024957"], ["updated_at", "2021-10-23 20:56:44.024957"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 62], ["created_at", "2021-10-23 20:56:44.026244"], ["updated_at", "2021-10-23 20:56:44.026244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.030526"], ["updated_at", "2021-10-23 20:56:44.030526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.031618"], ["updated_at", "2021-10-23 20:56:44.031618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 63], ["created_at", "2021-10-23 20:56:44.033057"], ["updated_at", "2021-10-23 20:56:44.033057"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 63], ["created_at", "2021-10-23 20:56:44.034544"], ["updated_at", "2021-10-23 20:56:44.034544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 63], ["created_at", "2021-10-23 20:56:44.036091"], ["updated_at", "2021-10-23 20:56:44.036091"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 64], ["created_at", "2021-10-23 20:56:44.038026"], ["updated_at", "2021-10-23 20:56:44.038026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.041127"], ["updated_at", "2021-10-23 20:56:44.041127"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.042266"], ["updated_at", "2021-10-23 20:56:44.042266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 65], ["created_at", "2021-10-23 20:56:44.043801"], ["updated_at", "2021-10-23 20:56:44.043801"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 65], ["created_at", "2021-10-23 20:56:44.045445"], ["updated_at", "2021-10-23 20:56:44.045445"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 65], ["created_at", "2021-10-23 20:56:44.047067"], ["updated_at", "2021-10-23 20:56:44.047067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 66], ["created_at", "2021-10-23 20:56:44.048794"], ["updated_at", "2021-10-23 20:56:44.048794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.5ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.051681"], ["updated_at", "2021-10-23 20:56:44.051681"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.052887"], ["updated_at", "2021-10-23 20:56:44.052887"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 67], ["created_at", "2021-10-23 20:56:44.054498"], ["updated_at", "2021-10-23 20:56:44.054498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 67], ["created_at", "2021-10-23 20:56:44.056405"], ["updated_at", "2021-10-23 20:56:44.056405"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 67], ["created_at", "2021-10-23 20:56:44.058008"], ["updated_at", "2021-10-23 20:56:44.058008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 68], ["created_at", "2021-10-23 20:56:44.059382"], ["updated_at", "2021-10-23 20:56:44.059382"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.061625"], ["updated_at", "2021-10-23 20:56:44.061625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.062778"], ["updated_at", "2021-10-23 20:56:44.062778"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 69], ["created_at", "2021-10-23 20:56:44.064331"], ["updated_at", "2021-10-23 20:56:44.064331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 69], ["created_at", "2021-10-23 20:56:44.065954"], ["updated_at", "2021-10-23 20:56:44.065954"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 69], ["created_at", "2021-10-23 20:56:44.067666"], ["updated_at", "2021-10-23 20:56:44.067666"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 70], ["created_at", "2021-10-23 20:56:44.069278"], ["updated_at", "2021-10-23 20:56:44.069278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (1.3ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.073658"], ["updated_at", "2021-10-23 20:56:44.073658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.074867"], ["updated_at", "2021-10-23 20:56:44.074867"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 71], ["created_at", "2021-10-23 20:56:44.076364"], ["updated_at", "2021-10-23 20:56:44.076364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 71], ["created_at", "2021-10-23 20:56:44.077740"], ["updated_at", "2021-10-23 20:56:44.077740"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 71], ["created_at", "2021-10-23 20:56:44.079173"], ["updated_at", "2021-10-23 20:56:44.079173"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 72], ["created_at", "2021-10-23 20:56:44.080571"], ["updated_at", "2021-10-23 20:56:44.080571"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.6ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 71]]
 (0.6ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 72]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.084304"], ["updated_at", "2021-10-23 20:56:44.084304"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.085377"], ["updated_at", "2021-10-23 20:56:44.085377"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 73], ["created_at", "2021-10-23 20:56:44.086945"], ["updated_at", "2021-10-23 20:56:44.086945"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 73], ["created_at", "2021-10-23 20:56:44.088778"], ["updated_at", "2021-10-23 20:56:44.088778"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 73], ["created_at", "2021-10-23 20:56:44.090070"], ["updated_at", "2021-10-23 20:56:44.090070"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 74], ["created_at", "2021-10-23 20:56:44.091343"], ["updated_at", "2021-10-23 20:56:44.091343"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 73], ["on_call", true]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.094220"], ["updated_at", "2021-10-23 20:56:44.094220"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.095475"], ["updated_at", "2021-10-23 20:56:44.095475"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 75], ["created_at", "2021-10-23 20:56:44.097151"], ["updated_at", "2021-10-23 20:56:44.097151"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 75], ["created_at", "2021-10-23 20:56:44.098634"], ["updated_at", "2021-10-23 20:56:44.098634"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 75], ["created_at", "2021-10-23 20:56:44.100073"], ["updated_at", "2021-10-23 20:56:44.100073"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 76], ["created_at", "2021-10-23 20:56:44.101510"], ["updated_at", "2021-10-23 20:56:44.101510"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 75], ["on_call", true]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.104184"], ["updated_at", "2021-10-23 20:56:44.104184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.105310"], ["updated_at", "2021-10-23 20:56:44.105310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 77], ["created_at", "2021-10-23 20:56:44.106604"], ["updated_at", "2021-10-23 20:56:44.106604"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 77], ["created_at", "2021-10-23 20:56:44.107859"], ["updated_at", "2021-10-23 20:56:44.107859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 77], ["created_at", "2021-10-23 20:56:44.109122"], ["updated_at", "2021-10-23 20:56:44.109122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 78], ["created_at", "2021-10-23 20:56:44.110846"], ["updated_at", "2021-10-23 20:56:44.110846"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.6ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)  [["veterinary_office_id", 77], ["on_call", true]]
 (0.2ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (1.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1  [["key", "environment"]]
 (0.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1  [["key", "environment"]]
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1  [["key", "environment"]]
 (63.6ms)  DROP DATABASE IF EXISTS "adopt_dont_shop_test"
 (125.5ms)  CREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'
SQL (0.7ms)  CREATE EXTENSION IF NOT EXISTS "plpgsql"
 (0.1ms)  DROP TABLE IF EXISTS "applications" CASCADE
 (6.8ms)  CREATE TABLE "applications" ("id" bigserial primary key, "applicant_name" character varying, "street_address" character varying, "city" character varying, "state" character varying, "zipcode" character varying, "application_status" character varying, "why" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.2ms)  DROP TABLE IF EXISTS "pets" CASCADE
 (4.8ms)  CREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.9ms)  CREATE  INDEX  "index_pets_on_shelter_id" ON "pets"  ("shelter_id")
 (0.1ms)  DROP TABLE IF EXISTS "shelters" CASCADE
 (2.8ms)  CREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.1ms)  DROP TABLE IF EXISTS "veterinarians" CASCADE
 (2.8ms)  CREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.9ms)  CREATE  INDEX  "index_veterinarians_on_veterinary_office_id" ON "veterinarians"  ("veterinary_office_id")
 (0.1ms)  DROP TABLE IF EXISTS "veterinary_offices" CASCADE
 (2.8ms)  CREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (1.8ms)  ALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"

FOREIGN KEY (“shelter_id”)

REFERENCES "shelters" ("id")



 (3.1ms)  ALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"

FOREIGN KEY (“veterinary_office_id”)

REFERENCES "veterinary_offices" ("id")



 (2.2ms)  CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
 (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  INSERT INTO "schema_migrations" (version) VALUES (20211023230147)
 (0.2ms)  INSERT INTO "schema_migrations" (version) VALUES

(20210212235502), (20210213001632), (20210212235735), (20210213001717);



 (2.0ms)  CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
ActiveRecord::InternalMetadata Load (0.2ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
ActiveRecord::InternalMetadata Create (0.3ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"  [["key", "environment"], ["value", "test"], ["created_at", "2021-10-23 23:55:43.492887"], ["updated_at", "2021-10-23 23:55:43.492887"]]
 (0.1ms)  COMMIT
ActiveRecord::InternalMetadata Load (0.1ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
 (0.1ms)  COMMIT
 (0.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.3ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (1.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1  [["key", "environment"]]
 (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1  [["key", "environment"]]
 (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1  [["key", "environment"]]
 (27.4ms)  DROP DATABASE IF EXISTS "adopt_dont_shop_test"
 (136.5ms)  CREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'
SQL (0.3ms)  CREATE EXTENSION IF NOT EXISTS "plpgsql"
 (0.1ms)  DROP TABLE IF EXISTS "application_pets" CASCADE
 (5.2ms)  CREATE TABLE "application_pets" ("id" bigserial primary key, "pet_id" bigint, "application_id" bigint, "status" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.6ms)  CREATE  INDEX  "index_application_pets_on_application_id" ON "application_pets"  ("application_id")
 (0.5ms)  CREATE  INDEX  "index_application_pets_on_pet_id" ON "application_pets"  ("pet_id")
 (0.1ms)  DROP TABLE IF EXISTS "applications" CASCADE
 (2.2ms)  CREATE TABLE "applications" ("id" bigserial primary key, "applicant_name" character varying, "street_address" character varying, "city" character varying, "state" character varying, "zipcode" character varying, "application_status" character varying, "why" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.1ms)  DROP TABLE IF EXISTS "pets" CASCADE
 (2.3ms)  CREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.5ms)  CREATE  INDEX  "index_pets_on_shelter_id" ON "pets"  ("shelter_id")
 (0.1ms)  DROP TABLE IF EXISTS "shelters" CASCADE
 (2.9ms)  CREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.1ms)  DROP TABLE IF EXISTS "veterinarians" CASCADE
 (20.2ms)  CREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.7ms)  CREATE  INDEX  "index_veterinarians_on_veterinary_office_id" ON "veterinarians"  ("veterinary_office_id")
 (0.2ms)  DROP TABLE IF EXISTS "veterinary_offices" CASCADE
 (2.5ms)  CREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (1.8ms)  ALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_6ac8983e3b"

FOREIGN KEY (“application_id”)

REFERENCES "applications" ("id")



 (1.4ms)  ALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_412710cd26"

FOREIGN KEY (“pet_id”)

REFERENCES "pets" ("id")



 (1.3ms)  ALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"

FOREIGN KEY (“shelter_id”)

REFERENCES "shelters" ("id")



 (1.4ms)  ALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"

FOREIGN KEY (“veterinary_office_id”)

REFERENCES "veterinary_offices" ("id")



 (2.5ms)  CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
 (1.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  INSERT INTO "schema_migrations" (version) VALUES (20211024000652)
 (1.6ms)  INSERT INTO "schema_migrations" (version) VALUES

(20210212235502), (20210213001632), (20210212235735), (20211023230147), (20210213001717);



 (2.0ms)  CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
ActiveRecord::InternalMetadata Load (0.2ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
ActiveRecord::InternalMetadata Create (0.2ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"  [["key", "environment"], ["value", "test"], ["created_at", "2021-10-24 00:09:39.920538"], ["updated_at", "2021-10-24 00:09:39.920538"]]
 (0.1ms)  COMMIT
ActiveRecord::InternalMetadata Load (0.1ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.0ms)  BEGIN
 (0.0ms)  COMMIT
 (0.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (1.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (1.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:31.986035"], ["updated_at", "2021-10-24 00:27:31.986035"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (5.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 1], ["created_at", "2021-10-24 00:27:32.021890"], ["updated_at", "2021-10-24 00:27:32.021890"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 1], ["created_at", "2021-10-24 00:27:32.028969"], ["updated_at", "2021-10-24 00:27:32.028969"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 1], ["created_at", "2021-10-24 00:27:32.031008"], ["updated_at", "2021-10-24 00:27:32.031008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.081170"], ["updated_at", "2021-10-24 00:27:32.081170"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 2], ["created_at", "2021-10-24 00:27:32.082572"], ["updated_at", "2021-10-24 00:27:32.082572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 2], ["created_at", "2021-10-24 00:27:32.083673"], ["updated_at", "2021-10-24 00:27:32.083673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 2], ["created_at", "2021-10-24 00:27:32.084693"], ["updated_at", "2021-10-24 00:27:32.084693"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.093123"], ["updated_at", "2021-10-24 00:27:32.093123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 3], ["created_at", "2021-10-24 00:27:32.094846"], ["updated_at", "2021-10-24 00:27:32.094846"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 3], ["created_at", "2021-10-24 00:27:32.095969"], ["updated_at", "2021-10-24 00:27:32.095969"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 3], ["created_at", "2021-10-24 00:27:32.096961"], ["updated_at", "2021-10-24 00:27:32.096961"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.098625"], ["updated_at", "2021-10-24 00:27:32.098625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 4], ["created_at", "2021-10-24 00:27:32.099680"], ["updated_at", "2021-10-24 00:27:32.099680"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 4], ["created_at", "2021-10-24 00:27:32.100631"], ["updated_at", "2021-10-24 00:27:32.100631"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 4], ["created_at", "2021-10-24 00:27:32.101856"], ["updated_at", "2021-10-24 00:27:32.101856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.107045"], ["updated_at", "2021-10-24 00:27:32.107045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 5], ["created_at", "2021-10-24 00:27:32.108113"], ["updated_at", "2021-10-24 00:27:32.108113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 5], ["created_at", "2021-10-24 00:27:32.109261"], ["updated_at", "2021-10-24 00:27:32.109261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 5], ["created_at", "2021-10-24 00:27:32.110536"], ["updated_at", "2021-10-24 00:27:32.110536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.114440"], ["updated_at", "2021-10-24 00:27:32.114440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 6], ["created_at", "2021-10-24 00:27:32.115619"], ["updated_at", "2021-10-24 00:27:32.115619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 6], ["created_at", "2021-10-24 00:27:32.116659"], ["updated_at", "2021-10-24 00:27:32.116659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 6], ["created_at", "2021-10-24 00:27:32.117952"], ["updated_at", "2021-10-24 00:27:32.117952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.121559"], ["updated_at", "2021-10-24 00:27:32.121559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 7], ["created_at", "2021-10-24 00:27:32.122848"], ["updated_at", "2021-10-24 00:27:32.122848"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 7], ["created_at", "2021-10-24 00:27:32.123844"], ["updated_at", "2021-10-24 00:27:32.123844"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 7], ["created_at", "2021-10-24 00:27:32.124918"], ["updated_at", "2021-10-24 00:27:32.124918"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (7.7ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.136104"], ["updated_at", "2021-10-24 00:27:32.136104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 8], ["created_at", "2021-10-24 00:27:32.137696"], ["updated_at", "2021-10-24 00:27:32.137696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 8], ["created_at", "2021-10-24 00:27:32.138748"], ["updated_at", "2021-10-24 00:27:32.138748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 8], ["created_at", "2021-10-24 00:27:32.139739"], ["updated_at", "2021-10-24 00:27:32.139739"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.143115"], ["updated_at", "2021-10-24 00:27:32.143115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 9], ["created_at", "2021-10-24 00:27:32.144329"], ["updated_at", "2021-10-24 00:27:32.144329"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 9], ["created_at", "2021-10-24 00:27:32.145760"], ["updated_at", "2021-10-24 00:27:32.145760"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 9], ["created_at", "2021-10-24 00:27:32.147037"], ["updated_at", "2021-10-24 00:27:32.147037"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.867254"], ["updated_at", "2021-10-24 00:28:29.867254"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 10], ["created_at", "2021-10-24 00:28:29.894249"], ["updated_at", "2021-10-24 00:28:29.894249"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 10], ["created_at", "2021-10-24 00:28:29.895885"], ["updated_at", "2021-10-24 00:28:29.895885"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 10], ["created_at", "2021-10-24 00:28:29.896847"], ["updated_at", "2021-10-24 00:28:29.896847"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.935551"], ["updated_at", "2021-10-24 00:28:29.935551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 11], ["created_at", "2021-10-24 00:28:29.936994"], ["updated_at", "2021-10-24 00:28:29.936994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 11], ["created_at", "2021-10-24 00:28:29.938328"], ["updated_at", "2021-10-24 00:28:29.938328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 11], ["created_at", "2021-10-24 00:28:29.939546"], ["updated_at", "2021-10-24 00:28:29.939546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.945877"], ["updated_at", "2021-10-24 00:28:29.945877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 12], ["created_at", "2021-10-24 00:28:29.947124"], ["updated_at", "2021-10-24 00:28:29.947124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 12], ["created_at", "2021-10-24 00:28:29.948245"], ["updated_at", "2021-10-24 00:28:29.948245"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 12], ["created_at", "2021-10-24 00:28:29.949577"], ["updated_at", "2021-10-24 00:28:29.949577"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.962795"], ["updated_at", "2021-10-24 00:28:29.962795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 13], ["created_at", "2021-10-24 00:28:29.964238"], ["updated_at", "2021-10-24 00:28:29.964238"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 13], ["created_at", "2021-10-24 00:28:29.965736"], ["updated_at", "2021-10-24 00:28:29.965736"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 13], ["created_at", "2021-10-24 00:28:29.966813"], ["updated_at", "2021-10-24 00:28:29.966813"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.972397"], ["updated_at", "2021-10-24 00:28:29.972397"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 14], ["created_at", "2021-10-24 00:28:29.973808"], ["updated_at", "2021-10-24 00:28:29.973808"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 14], ["created_at", "2021-10-24 00:28:29.974900"], ["updated_at", "2021-10-24 00:28:29.974900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 14], ["created_at", "2021-10-24 00:28:29.976291"], ["updated_at", "2021-10-24 00:28:29.976291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.980448"], ["updated_at", "2021-10-24 00:28:29.980448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 15], ["created_at", "2021-10-24 00:28:29.981764"], ["updated_at", "2021-10-24 00:28:29.981764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 15], ["created_at", "2021-10-24 00:28:29.982893"], ["updated_at", "2021-10-24 00:28:29.982893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 15], ["created_at", "2021-10-24 00:28:29.984006"], ["updated_at", "2021-10-24 00:28:29.984006"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.987473"], ["updated_at", "2021-10-24 00:28:29.987473"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 16], ["created_at", "2021-10-24 00:28:29.988677"], ["updated_at", "2021-10-24 00:28:29.988677"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 16], ["created_at", "2021-10-24 00:28:29.989722"], ["updated_at", "2021-10-24 00:28:29.989722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 16], ["created_at", "2021-10-24 00:28:29.990756"], ["updated_at", "2021-10-24 00:28:29.990756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.994430"], ["updated_at", "2021-10-24 00:28:29.994430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 17], ["created_at", "2021-10-24 00:28:29.995734"], ["updated_at", "2021-10-24 00:28:29.995734"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 17], ["created_at", "2021-10-24 00:28:29.997724"], ["updated_at", "2021-10-24 00:28:29.997724"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 17], ["created_at", "2021-10-24 00:28:29.999414"], ["updated_at", "2021-10-24 00:28:29.999414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:30.002868"], ["updated_at", "2021-10-24 00:28:30.002868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 18], ["created_at", "2021-10-24 00:28:30.004277"], ["updated_at", "2021-10-24 00:28:30.004277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 18], ["created_at", "2021-10-24 00:28:30.005532"], ["updated_at", "2021-10-24 00:28:30.005532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 18], ["created_at", "2021-10-24 00:28:30.006569"], ["updated_at", "2021-10-24 00:28:30.006569"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (2.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.459986"], ["updated_at", "2021-10-24 00:28:49.459986"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 19], ["created_at", "2021-10-24 00:28:49.489429"], ["updated_at", "2021-10-24 00:28:49.489429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 19], ["created_at", "2021-10-24 00:28:49.491708"], ["updated_at", "2021-10-24 00:28:49.491708"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 19], ["created_at", "2021-10-24 00:28:49.492867"], ["updated_at", "2021-10-24 00:28:49.492867"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.537067"], ["updated_at", "2021-10-24 00:28:49.537067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 20], ["created_at", "2021-10-24 00:28:49.538467"], ["updated_at", "2021-10-24 00:28:49.538467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 20], ["created_at", "2021-10-24 00:28:49.539612"], ["updated_at", "2021-10-24 00:28:49.539612"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 20], ["created_at", "2021-10-24 00:28:49.541011"], ["updated_at", "2021-10-24 00:28:49.541011"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.547544"], ["updated_at", "2021-10-24 00:28:49.547544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 21], ["created_at", "2021-10-24 00:28:49.549007"], ["updated_at", "2021-10-24 00:28:49.549007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 21], ["created_at", "2021-10-24 00:28:49.550177"], ["updated_at", "2021-10-24 00:28:49.550177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 21], ["created_at", "2021-10-24 00:28:49.551199"], ["updated_at", "2021-10-24 00:28:49.551199"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.554865"], ["updated_at", "2021-10-24 00:28:49.554865"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 22], ["created_at", "2021-10-24 00:28:49.556077"], ["updated_at", "2021-10-24 00:28:49.556077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 22], ["created_at", "2021-10-24 00:28:49.557491"], ["updated_at", "2021-10-24 00:28:49.557491"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 22], ["created_at", "2021-10-24 00:28:49.558533"], ["updated_at", "2021-10-24 00:28:49.558533"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.563842"], ["updated_at", "2021-10-24 00:28:49.563842"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 23], ["created_at", "2021-10-24 00:28:49.565206"], ["updated_at", "2021-10-24 00:28:49.565206"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 23], ["created_at", "2021-10-24 00:28:49.566291"], ["updated_at", "2021-10-24 00:28:49.566291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 23], ["created_at", "2021-10-24 00:28:49.567372"], ["updated_at", "2021-10-24 00:28:49.567372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.571322"], ["updated_at", "2021-10-24 00:28:49.571322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 24], ["created_at", "2021-10-24 00:28:49.572652"], ["updated_at", "2021-10-24 00:28:49.572652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 24], ["created_at", "2021-10-24 00:28:49.573836"], ["updated_at", "2021-10-24 00:28:49.573836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 24], ["created_at", "2021-10-24 00:28:49.575125"], ["updated_at", "2021-10-24 00:28:49.575125"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.578776"], ["updated_at", "2021-10-24 00:28:49.578776"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 25], ["created_at", "2021-10-24 00:28:49.580239"], ["updated_at", "2021-10-24 00:28:49.580239"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 25], ["created_at", "2021-10-24 00:28:49.581441"], ["updated_at", "2021-10-24 00:28:49.581441"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 25], ["created_at", "2021-10-24 00:28:49.582460"], ["updated_at", "2021-10-24 00:28:49.582460"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.586219"], ["updated_at", "2021-10-24 00:28:49.586219"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 26], ["created_at", "2021-10-24 00:28:49.587335"], ["updated_at", "2021-10-24 00:28:49.587335"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 26], ["created_at", "2021-10-24 00:28:49.588712"], ["updated_at", "2021-10-24 00:28:49.588712"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 26], ["created_at", "2021-10-24 00:28:49.589827"], ["updated_at", "2021-10-24 00:28:49.589827"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
 (0.2ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.593350"], ["updated_at", "2021-10-24 00:28:49.593350"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 27], ["created_at", "2021-10-24 00:28:49.594521"], ["updated_at", "2021-10-24 00:28:49.594521"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 27], ["created_at", "2021-10-24 00:28:49.595944"], ["updated_at", "2021-10-24 00:28:49.595944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 27], ["created_at", "2021-10-24 00:28:49.597337"], ["updated_at", "2021-10-24 00:28:49.597337"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (2.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Application Create (2.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 22:01:01.865754"], ["updated_at", "2021-10-24 22:01:01.865754"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/1” for 127.0.0.1 at 2021-10-24 16:01:01 -0600

 (0.3ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 22:01:39.164107"], ["updated_at", "2021-10-24 22:01:39.164107"]]
 (1.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/2” for 127.0.0.1 at 2021-10-24 16:01:39 -0600

 (0.2ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 22:03:48.259347"], ["updated_at", "2021-10-24 22:03:48.259347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/3” for 127.0.0.1 at 2021-10-24 16:03:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"3"}

Completed 406 Not Acceptable in 15ms (ActiveRecord: 0.0ms)

 (0.3ms)  ROLLBACK
 (1.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 22:06:52.899972"], ["updated_at", "2021-10-24 22:06:52.899972"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/4” for 127.0.0.1 at 2021-10-24 16:06:52 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"4"}
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 96ms (Views: 90.5ms | ActiveRecord: 0.0ms)

 (0.4ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-24 23:59:08.462774"], ["updated_at", "2021-10-24 23:59:08.462774"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 28], ["created_at", "2021-10-24 23:59:08.496973"], ["updated_at", "2021-10-24 23:59:08.496973"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 28], ["created_at", "2021-10-24 23:59:08.499296"], ["updated_at", "2021-10-24 23:59:08.499296"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 28], ["created_at", "2021-10-24 23:59:08.500456"], ["updated_at", "2021-10-24 23:59:08.500456"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 23:59:08.516932"], ["updated_at", "2021-10-24 23:59:08.516932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/5” for 127.0.0.1 at 2021-10-24 17:59:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"5"}
Application Load (0.8ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]

Completed 500 Internal Server Error in 7ms (ActiveRecord: 1.0ms)

 (0.4ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-24 23:59:17.404859"], ["updated_at", "2021-10-24 23:59:17.404859"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 29], ["created_at", "2021-10-24 23:59:17.430446"], ["updated_at", "2021-10-24 23:59:17.430446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 29], ["created_at", "2021-10-24 23:59:17.432820"], ["updated_at", "2021-10-24 23:59:17.432820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 29], ["created_at", "2021-10-24 23:59:17.434071"], ["updated_at", "2021-10-24 23:59:17.434071"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 23:59:17.449988"], ["updated_at", "2021-10-24 23:59:17.449988"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/6” for 127.0.0.1 at 2021-10-24 17:59:17 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"6"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]

Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 00:00:00.397603"], ["updated_at", "2021-10-25 00:00:00.397603"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 30], ["created_at", "2021-10-25 00:00:00.429776"], ["updated_at", "2021-10-25 00:00:00.429776"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 30], ["created_at", "2021-10-25 00:00:00.432157"], ["updated_at", "2021-10-25 00:00:00.432157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 30], ["created_at", "2021-10-25 00:00:00.433346"], ["updated_at", "2021-10-25 00:00:00.433346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 00:00:00.448130"], ["updated_at", "2021-10-25 00:00:00.448130"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/7” for 127.0.0.1 at 2021-10-24 18:00:00 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"7"}
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]

Completed 500 Internal Server Error in 46198ms (ActiveRecord: 0.7ms)

 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 00:00:49.197132"], ["updated_at", "2021-10-25 00:00:49.197132"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (2.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 31], ["created_at", "2021-10-25 00:00:49.242049"], ["updated_at", "2021-10-25 00:00:49.242049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 31], ["created_at", "2021-10-25 00:00:49.246106"], ["updated_at", "2021-10-25 00:00:49.246106"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 31], ["created_at", "2021-10-25 00:00:49.247490"], ["updated_at", "2021-10-25 00:00:49.247490"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Create (1.0ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 00:00:49.282642"], ["updated_at", "2021-10-25 00:00:49.282642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/8” for 127.0.0.1 at 2021-10-24 18:00:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"8"}
Application Load (0.8ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]

Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.0ms)

 (0.3ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 00:01:00.383097"], ["updated_at", "2021-10-25 00:01:00.383097"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 32], ["created_at", "2021-10-25 00:01:00.414352"], ["updated_at", "2021-10-25 00:01:00.414352"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 32], ["created_at", "2021-10-25 00:01:00.416854"], ["updated_at", "2021-10-25 00:01:00.416854"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 32], ["created_at", "2021-10-25 00:01:00.418164"], ["updated_at", "2021-10-25 00:01:00.418164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 00:01:00.435695"], ["updated_at", "2021-10-25 00:01:00.435695"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/9” for 127.0.0.1 at 2021-10-24 18:01:00 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"9"}
Application Load (0.6ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
ApplicationPet Load (0.7ms)  SELECT  "application_pets".* FROM "application_pets" WHERE "application_pets"."application_id" = $1 LIMIT $2  [["application_id", 9], ["LIMIT", 11]]
ApplicationPet Load (0.4ms)  SELECT "application_pets".* FROM "application_pets" WHERE "application_pets"."application_id" = $1  [["application_id", 9]]

Completed 500 Internal Server Error in 903904ms (ActiveRecord: 4.4ms)

 (1.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 01:14:04.617355"], ["updated_at", "2021-10-25 01:14:04.617355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 33], ["created_at", "2021-10-25 01:14:04.642976"], ["updated_at", "2021-10-25 01:14:04.642976"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 33], ["created_at", "2021-10-25 01:14:04.645267"], ["updated_at", "2021-10-25 01:14:04.645267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 33], ["created_at", "2021-10-25 01:14:04.646787"], ["updated_at", "2021-10-25 01:14:04.646787"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 01:14:04.662513"], ["updated_at", "2021-10-25 01:14:04.662513"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/10” for 127.0.0.1 at 2021-10-24 19:14:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"10"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (151773.3ms)

Completed 500 Internal Server Error in 151782ms (ActiveRecord: 0.5ms)

 (0.4ms)  ROLLBACK
 (1.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 12:37:38.088705"], ["updated_at", "2021-10-25 12:37:38.088705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (4.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 34], ["created_at", "2021-10-25 12:37:38.128077"], ["updated_at", "2021-10-25 12:37:38.128077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 34], ["created_at", "2021-10-25 12:37:38.134092"], ["updated_at", "2021-10-25 12:37:38.134092"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 34], ["created_at", "2021-10-25 12:37:38.136450"], ["updated_at", "2021-10-25 12:37:38.136450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 12:37:38.160951"], ["updated_at", "2021-10-25 12:37:38.160951"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (2.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 100], ["application_id", 11], ["created_at", "2021-10-25 12:37:38.182483"], ["updated_at", "2021-10-25 12:37:38.182483"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 101], ["application_id", 11], ["created_at", "2021-10-25 12:37:38.186421"], ["updated_at", "2021-10-25 12:37:38.186421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/11” for 127.0.0.1 at 2021-10-25 06:37:38 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"11"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 11)
Rendered applications/show.html.erb within layouts/application (5.2ms)

Completed 200 OK in 96ms (Views: 88.2ms | ActiveRecord: 2.3ms)

 (0.5ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 12:38:42.150449"], ["updated_at", "2021-10-25 12:38:42.150449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 35], ["created_at", "2021-10-25 12:38:42.192593"], ["updated_at", "2021-10-25 12:38:42.192593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 35], ["created_at", "2021-10-25 12:38:42.196105"], ["updated_at", "2021-10-25 12:38:42.196105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 35], ["created_at", "2021-10-25 12:38:42.197454"], ["updated_at", "2021-10-25 12:38:42.197454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Create (1.1ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 12:38:42.229244"], ["updated_at", "2021-10-25 12:38:42.229244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 103], ["application_id", 12], ["created_at", "2021-10-25 12:38:42.249722"], ["updated_at", "2021-10-25 12:38:42.249722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 104], ["application_id", 12], ["created_at", "2021-10-25 12:38:42.252618"], ["updated_at", "2021-10-25 12:38:42.252618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/12” for 127.0.0.1 at 2021-10-25 06:38:42 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"12"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 12)
Rendered applications/show.html.erb within layouts/application (5.7ms)

Completed 200 OK in 86ms (Views: 77.7ms | ActiveRecord: 2.9ms)

 (0.3ms)  ROLLBACK
 (1.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:24.982293"], ["updated_at", "2021-10-25 21:43:24.982293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (4.9ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Pet Create (6.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 36], ["created_at", "2021-10-25 21:43:25.018885"], ["updated_at", "2021-10-25 21:43:25.018885"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 36], ["created_at", "2021-10-25 21:43:25.027192"], ["updated_at", "2021-10-25 21:43:25.027192"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (8.4ms)

Completed 200 OK in 102ms (Views: 97.5ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:25.187437"], ["updated_at", "2021-10-25 21:43:25.187437"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 37], ["created_at", "2021-10-25 21:43:25.189327"], ["updated_at", "2021-10-25 21:43:25.189327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 37], ["created_at", "2021-10-25 21:43:25.191028"], ["updated_at", "2021-10-25 21:43:25.191028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 37], ["created_at", "2021-10-25 21:43:25.192506"], ["updated_at", "2021-10-25 21:43:25.192506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:25.216386"], ["updated_at", "2021-10-25 21:43:25.216386"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 38], ["created_at", "2021-10-25 21:43:25.218094"], ["updated_at", "2021-10-25 21:43:25.218094"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 38], ["created_at", "2021-10-25 21:43:25.219480"], ["updated_at", "2021-10-25 21:43:25.219480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/111/edit” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"111"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.1ms)

Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:25.233360"], ["updated_at", "2021-10-25 21:43:25.233360"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 39], ["created_at", "2021-10-25 21:43:25.234875"], ["updated_at", "2021-10-25 21:43:25.234875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 39], ["created_at", "2021-10-25 21:43:25.236214"], ["updated_at", "2021-10-25 21:43:25.236214"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started DELETE “/pets/113” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"113"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (5.5ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 113]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 7ms (ActiveRecord: 5.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:25.263603"], ["updated_at", "2021-10-25 21:43:25.263603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 40], ["created_at", "2021-10-25 21:43:25.265390"], ["updated_at", "2021-10-25 21:43:25.265390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 40], ["created_at", "2021-10-25 21:43:25.266670"], ["updated_at", "2021-10-25 21:43:25.266670"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 40], ["created_at", "2021-10-25 21:43:25.268227"], ["updated_at", "2021-10-25 21:43:25.268227"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (1.2ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.6ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:47.756965"], ["updated_at", "2021-10-25 21:43:47.756965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 41], ["created_at", "2021-10-25 21:43:47.788220"], ["updated_at", "2021-10-25 21:43:47.788220"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 41], ["created_at", "2021-10-25 21:43:47.790427"], ["updated_at", "2021-10-25 21:43:47.790427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.1ms)

Completed 200 OK in 91ms (Views: 86.1ms | ActiveRecord: 0.8ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:47.935975"], ["updated_at", "2021-10-25 21:43:47.935975"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 42], ["created_at", "2021-10-25 21:43:47.937751"], ["updated_at", "2021-10-25 21:43:47.937751"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 42], ["created_at", "2021-10-25 21:43:47.939079"], ["updated_at", "2021-10-25 21:43:47.939079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 42], ["created_at", "2021-10-25 21:43:47.940681"], ["updated_at", "2021-10-25 21:43:47.940681"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:47.964912"], ["updated_at", "2021-10-25 21:43:47.964912"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 43], ["created_at", "2021-10-25 21:43:47.966487"], ["updated_at", "2021-10-25 21:43:47.966487"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 43], ["created_at", "2021-10-25 21:43:47.967920"], ["updated_at", "2021-10-25 21:43:47.967920"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/123/edit” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"123"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 123], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.1ms)

Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:47.981340"], ["updated_at", "2021-10-25 21:43:47.981340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 44], ["created_at", "2021-10-25 21:43:47.983001"], ["updated_at", "2021-10-25 21:43:47.983001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 44], ["created_at", "2021-10-25 21:43:47.984440"], ["updated_at", "2021-10-25 21:43:47.984440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started DELETE “/pets/125” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"125"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (2.3ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 125]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 2.7ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:48 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:48.007451"], ["updated_at", "2021-10-25 21:43:48.007451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 45], ["created_at", "2021-10-25 21:43:48.009705"], ["updated_at", "2021-10-25 21:43:48.009705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 45], ["created_at", "2021-10-25 21:43:48.011079"], ["updated_at", "2021-10-25 21:43:48.011079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 45], ["created_at", "2021-10-25 21:43:48.012947"], ["updated_at", "2021-10-25 21:43:48.012947"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:48 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:43:48 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:48 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:45:28.732290"], ["updated_at", "2021-10-25 21:45:28.732290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 46], ["created_at", "2021-10-25 21:45:28.764992"], ["updated_at", "2021-10-25 21:45:28.764992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 46], ["created_at", "2021-10-25 21:45:28.767287"], ["updated_at", "2021-10-25 21:45:28.767287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.5ms)

Completed 200 OK in 93ms (Views: 88.6ms | ActiveRecord: 0.9ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:45:28.917491"], ["updated_at", "2021-10-25 21:45:28.917491"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 47], ["created_at", "2021-10-25 21:45:28.919511"], ["updated_at", "2021-10-25 21:45:28.919511"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 47], ["created_at", "2021-10-25 21:45:28.921027"], ["updated_at", "2021-10-25 21:45:28.921027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 47], ["created_at", "2021-10-25 21:45:28.922452"], ["updated_at", "2021-10-25 21:45:28.922452"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.5ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:45:28.947376"], ["updated_at", "2021-10-25 21:45:28.947376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 48], ["created_at", "2021-10-25 21:45:28.948891"], ["updated_at", "2021-10-25 21:45:28.948891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 48], ["created_at", "2021-10-25 21:45:28.950363"], ["updated_at", "2021-10-25 21:45:28.950363"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started GET “/pets/135/edit” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"135"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 135], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:45:28.964038"], ["updated_at", "2021-10-25 21:45:28.964038"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 49], ["created_at", "2021-10-25 21:45:28.965514"], ["updated_at", "2021-10-25 21:45:28.965514"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 49], ["created_at", "2021-10-25 21:45:28.967191"], ["updated_at", "2021-10-25 21:45:28.967191"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started DELETE “/pets/137” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"137"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 137], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.9ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 137]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:45:28.990293"], ["updated_at", "2021-10-25 21:45:28.990293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 50], ["created_at", "2021-10-25 21:45:28.991909"], ["updated_at", "2021-10-25 21:45:28.991909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 50], ["created_at", "2021-10-25 21:45:28.993368"], ["updated_at", "2021-10-25 21:45:28.993368"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 50], ["created_at", "2021-10-25 21:45:28.995390"], ["updated_at", "2021-10-25 21:45:28.995390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:45:29 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:29 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 15:45:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"new"}
Application Load (0.7ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 0], ["LIMIT", 1]]

Completed 404 Not Found in 15ms (ActiveRecord: 11.6ms)

 (0.2ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:46:09.200266"], ["updated_at", "2021-10-25 21:46:09.200266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 51], ["created_at", "2021-10-25 21:46:09.234638"], ["updated_at", "2021-10-25 21:46:09.234638"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 51], ["created_at", "2021-10-25 21:46:09.236809"], ["updated_at", "2021-10-25 21:46:09.236809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (6.9ms)

Completed 200 OK in 90ms (Views: 85.8ms | ActiveRecord: 0.7ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:46:09.380182"], ["updated_at", "2021-10-25 21:46:09.380182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 52], ["created_at", "2021-10-25 21:46:09.382260"], ["updated_at", "2021-10-25 21:46:09.382260"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 52], ["created_at", "2021-10-25 21:46:09.400943"], ["updated_at", "2021-10-25 21:46:09.400943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 52], ["created_at", "2021-10-25 21:46:09.402495"], ["updated_at", "2021-10-25 21:46:09.402495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:46:09.409083"], ["updated_at", "2021-10-25 21:46:09.409083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 53], ["created_at", "2021-10-25 21:46:09.410670"], ["updated_at", "2021-10-25 21:46:09.410670"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 53], ["created_at", "2021-10-25 21:46:09.412339"], ["updated_at", "2021-10-25 21:46:09.412339"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/147/edit” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"147"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.1ms)

Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:46:09.425484"], ["updated_at", "2021-10-25 21:46:09.425484"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 54], ["created_at", "2021-10-25 21:46:09.427500"], ["updated_at", "2021-10-25 21:46:09.427500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 54], ["created_at", "2021-10-25 21:46:09.429497"], ["updated_at", "2021-10-25 21:46:09.429497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms) Started DELETE “/pets/149” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"149"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.3ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 149]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 1.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.7ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:46:09.453098"], ["updated_at", "2021-10-25 21:46:09.453098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 55], ["created_at", "2021-10-25 21:46:09.454643"], ["updated_at", "2021-10-25 21:46:09.454643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 55], ["created_at", "2021-10-25 21:46:09.455919"], ["updated_at", "2021-10-25 21:46:09.455919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 55], ["created_at", "2021-10-25 21:46:09.457150"], ["updated_at", "2021-10-25 21:46:09.457150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.5ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"new"}
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 0], ["LIMIT", 1]]

Completed 404 Not Found in 14ms (ActiveRecord: 10.9ms)

 (0.1ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:01.201329"], ["updated_at", "2021-10-25 21:48:01.201329"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 56], ["created_at", "2021-10-25 21:48:01.235276"], ["updated_at", "2021-10-25 21:48:01.235276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 56], ["created_at", "2021-10-25 21:48:01.237432"], ["updated_at", "2021-10-25 21:48:01.237432"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.8ms)

Completed 200 OK in 94ms (Views: 88.9ms | ActiveRecord: 1.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:01.384299"], ["updated_at", "2021-10-25 21:48:01.384299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 57], ["created_at", "2021-10-25 21:48:01.386387"], ["updated_at", "2021-10-25 21:48:01.386387"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 57], ["created_at", "2021-10-25 21:48:01.388163"], ["updated_at", "2021-10-25 21:48:01.388163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 57], ["created_at", "2021-10-25 21:48:01.407233"], ["updated_at", "2021-10-25 21:48:01.407233"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:01.414209"], ["updated_at", "2021-10-25 21:48:01.414209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 58], ["created_at", "2021-10-25 21:48:01.415696"], ["updated_at", "2021-10-25 21:48:01.415696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 58], ["created_at", "2021-10-25 21:48:01.417353"], ["updated_at", "2021-10-25 21:48:01.417353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms) Started GET “/pets/159/edit” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"159"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 159], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:01.430974"], ["updated_at", "2021-10-25 21:48:01.430974"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 59], ["created_at", "2021-10-25 21:48:01.432541"], ["updated_at", "2021-10-25 21:48:01.432541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 59], ["created_at", "2021-10-25 21:48:01.433839"], ["updated_at", "2021-10-25 21:48:01.433839"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms) Started DELETE “/pets/161” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"161"}
Pet Load (0.6ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 161], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.2ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 161]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:01.455903"], ["updated_at", "2021-10-25 21:48:01.455903"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 60], ["created_at", "2021-10-25 21:48:01.457666"], ["updated_at", "2021-10-25 21:48:01.457666"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 60], ["created_at", "2021-10-25 21:48:01.459235"], ["updated_at", "2021-10-25 21:48:01.459235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 60], ["created_at", "2021-10-25 21:48:01.460759"], ["updated_at", "2021-10-25 21:48:01.460759"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"new"}
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 0], ["LIMIT", 1]]

Completed 404 Not Found in 14ms (ActiveRecord: 10.5ms)

 (0.1ms)  ROLLBACK
 (1.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:34.648279"], ["updated_at", "2021-10-25 21:48:34.648279"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 61], ["created_at", "2021-10-25 21:48:34.680158"], ["updated_at", "2021-10-25 21:48:34.680158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 61], ["created_at", "2021-10-25 21:48:34.682582"], ["updated_at", "2021-10-25 21:48:34.682582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.6ms)

Completed 200 OK in 92ms (Views: 87.0ms | ActiveRecord: 1.1ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:34.829812"], ["updated_at", "2021-10-25 21:48:34.829812"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Pet Create (1.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 62], ["created_at", "2021-10-25 21:48:34.831601"], ["updated_at", "2021-10-25 21:48:34.831601"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 62], ["created_at", "2021-10-25 21:48:34.851339"], ["updated_at", "2021-10-25 21:48:34.851339"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 62], ["created_at", "2021-10-25 21:48:34.853287"], ["updated_at", "2021-10-25 21:48:34.853287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:34.859823"], ["updated_at", "2021-10-25 21:48:34.859823"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 63], ["created_at", "2021-10-25 21:48:34.861502"], ["updated_at", "2021-10-25 21:48:34.861502"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 63], ["created_at", "2021-10-25 21:48:34.862841"], ["updated_at", "2021-10-25 21:48:34.862841"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/171/edit” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"171"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 171], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.1ms)

Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:34.876685"], ["updated_at", "2021-10-25 21:48:34.876685"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 64], ["created_at", "2021-10-25 21:48:34.878402"], ["updated_at", "2021-10-25 21:48:34.878402"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 64], ["created_at", "2021-10-25 21:48:34.880225"], ["updated_at", "2021-10-25 21:48:34.880225"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started DELETE “/pets/173” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"173"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 173], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (2.3ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 173]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 2.7ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:34.904053"], ["updated_at", "2021-10-25 21:48:34.904053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 65], ["created_at", "2021-10-25 21:48:34.905599"], ["updated_at", "2021-10-25 21:48:34.905599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 65], ["created_at", "2021-10-25 21:48:34.907010"], ["updated_at", "2021-10-25 21:48:34.907010"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 65], ["created_at", "2021-10-25 21:48:34.908585"], ["updated_at", "2021-10-25 21:48:34.908585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.4ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.6ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"new"}
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 0], ["LIMIT", 1]]

Completed 404 Not Found in 18ms (ActiveRecord: 10.1ms)

 (0.1ms)  ROLLBACK
 (2.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.1ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:00:58.872142"], ["updated_at", "2021-10-25 22:00:58.872142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 66], ["created_at", "2021-10-25 22:00:58.905215"], ["updated_at", "2021-10-25 22:00:58.905215"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 66], ["created_at", "2021-10-25 22:00:58.907671"], ["updated_at", "2021-10-25 22:00:58.907671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:58 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.5ms)

Completed 200 OK in 92ms (Views: 87.1ms | ActiveRecord: 0.8ms)

 (0.4ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:00:59.061308"], ["updated_at", "2021-10-25 22:00:59.061308"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 67], ["created_at", "2021-10-25 22:00:59.063238"], ["updated_at", "2021-10-25 22:00:59.063238"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.7ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 67], ["created_at", "2021-10-25 22:00:59.083421"], ["updated_at", "2021-10-25 22:00:59.083421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 67], ["created_at", "2021-10-25 22:00:59.085589"], ["updated_at", "2021-10-25 22:00:59.085589"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:00:59.092454"], ["updated_at", "2021-10-25 22:00:59.092454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 68], ["created_at", "2021-10-25 22:00:59.093736"], ["updated_at", "2021-10-25 22:00:59.093736"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 68], ["created_at", "2021-10-25 22:00:59.095199"], ["updated_at", "2021-10-25 22:00:59.095199"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started GET “/pets/183/edit” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"183"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 183], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:00:59.108746"], ["updated_at", "2021-10-25 22:00:59.108746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 69], ["created_at", "2021-10-25 22:00:59.110328"], ["updated_at", "2021-10-25 22:00:59.110328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 69], ["created_at", "2021-10-25 22:00:59.111747"], ["updated_at", "2021-10-25 22:00:59.111747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started DELETE “/pets/185” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"185"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 185], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.4ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 185]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.1ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:00:59.134824"], ["updated_at", "2021-10-25 22:00:59.134824"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 70], ["created_at", "2021-10-25 22:00:59.136609"], ["updated_at", "2021-10-25 22:00:59.136609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 70], ["created_at", "2021-10-25 22:00:59.137855"], ["updated_at", "2021-10-25 22:00:59.137855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 70], ["created_at", "2021-10-25 22:00:59.139031"], ["updated_at", "2021-10-25 22:00:59.139031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.8ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (0.1ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)

 (0.3ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:01:17.442755"], ["updated_at", "2021-10-25 22:01:17.442755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.7ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 71], ["created_at", "2021-10-25 22:01:17.479267"], ["updated_at", "2021-10-25 22:01:17.479267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 71], ["created_at", "2021-10-25 22:01:17.482029"], ["updated_at", "2021-10-25 22:01:17.482029"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (6.6ms)

Completed 200 OK in 90ms (Views: 84.9ms | ActiveRecord: 0.8ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:01:17.635255"], ["updated_at", "2021-10-25 22:01:17.635255"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 72], ["created_at", "2021-10-25 22:01:17.637354"], ["updated_at", "2021-10-25 22:01:17.637354"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 72], ["created_at", "2021-10-25 22:01:17.638721"], ["updated_at", "2021-10-25 22:01:17.638721"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 72], ["created_at", "2021-10-25 22:01:17.640055"], ["updated_at", "2021-10-25 22:01:17.640055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:01:17.646444"], ["updated_at", "2021-10-25 22:01:17.646444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 73], ["created_at", "2021-10-25 22:01:17.647919"], ["updated_at", "2021-10-25 22:01:17.647919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 73], ["created_at", "2021-10-25 22:01:17.649684"], ["updated_at", "2021-10-25 22:01:17.649684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms) Started GET “/pets/195/edit” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"195"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 195], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.8ms)

Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:01:17.662797"], ["updated_at", "2021-10-25 22:01:17.662797"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 74], ["created_at", "2021-10-25 22:01:17.664213"], ["updated_at", "2021-10-25 22:01:17.664213"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 74], ["created_at", "2021-10-25 22:01:17.665357"], ["updated_at", "2021-10-25 22:01:17.665357"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started DELETE “/pets/197” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"197"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 197], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (2.0ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 197]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 2.5ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:01:17.687503"], ["updated_at", "2021-10-25 22:01:17.687503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 75], ["created_at", "2021-10-25 22:01:17.689265"], ["updated_at", "2021-10-25 22:01:17.689265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 75], ["created_at", "2021-10-25 22:01:17.690509"], ["updated_at", "2021-10-25 22:01:17.690509"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 75], ["created_at", "2021-10-25 22:01:17.691878"], ["updated_at", "2021-10-25 22:01:17.691878"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.2ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (0.2ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:06.953343"], ["updated_at", "2021-10-25 22:45:06.953343"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 76], ["created_at", "2021-10-25 22:45:06.986105"], ["updated_at", "2021-10-25 22:45:06.986105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 76], ["created_at", "2021-10-25 22:45:06.988467"], ["updated_at", "2021-10-25 22:45:06.988467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:06 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.8ms)

Completed 200 OK in 95ms (Views: 90.2ms | ActiveRecord: 0.9ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:07.144756"], ["updated_at", "2021-10-25 22:45:07.144756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 77], ["created_at", "2021-10-25 22:45:07.146608"], ["updated_at", "2021-10-25 22:45:07.146608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 77], ["created_at", "2021-10-25 22:45:07.166172"], ["updated_at", "2021-10-25 22:45:07.166172"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 77], ["created_at", "2021-10-25 22:45:07.167561"], ["updated_at", "2021-10-25 22:45:07.167561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:07.174271"], ["updated_at", "2021-10-25 22:45:07.174271"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 78], ["created_at", "2021-10-25 22:45:07.175791"], ["updated_at", "2021-10-25 22:45:07.175791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 78], ["created_at", "2021-10-25 22:45:07.177175"], ["updated_at", "2021-10-25 22:45:07.177175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started GET “/pets/207/edit” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"207"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 207], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:07.190014"], ["updated_at", "2021-10-25 22:45:07.190014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 79], ["created_at", "2021-10-25 22:45:07.191627"], ["updated_at", "2021-10-25 22:45:07.191627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 79], ["created_at", "2021-10-25 22:45:07.192883"], ["updated_at", "2021-10-25 22:45:07.192883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started DELETE “/pets/209” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"209"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 209], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.7ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 209]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:07.214440"], ["updated_at", "2021-10-25 22:45:07.214440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 80], ["created_at", "2021-10-25 22:45:07.215930"], ["updated_at", "2021-10-25 22:45:07.215930"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 80], ["created_at", "2021-10-25 22:45:07.217165"], ["updated_at", "2021-10-25 22:45:07.217165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 80], ["created_at", "2021-10-25 22:45:07.218706"], ["updated_at", "2021-10-25 22:45:07.218706"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (0.1ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)

 (0.2ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:19.000366"], ["updated_at", "2021-10-25 22:45:19.000366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 81], ["created_at", "2021-10-25 22:45:19.037758"], ["updated_at", "2021-10-25 22:45:19.037758"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 81], ["created_at", "2021-10-25 22:45:19.041643"], ["updated_at", "2021-10-25 22:45:19.041643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (8.2ms)

Completed 200 OK in 92ms (Views: 86.3ms | ActiveRecord: 1.5ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:19.194519"], ["updated_at", "2021-10-25 22:45:19.194519"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 82], ["created_at", "2021-10-25 22:45:19.196382"], ["updated_at", "2021-10-25 22:45:19.196382"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 82], ["created_at", "2021-10-25 22:45:19.198079"], ["updated_at", "2021-10-25 22:45:19.198079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 82], ["created_at", "2021-10-25 22:45:19.199331"], ["updated_at", "2021-10-25 22:45:19.199331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:19.205376"], ["updated_at", "2021-10-25 22:45:19.205376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 83], ["created_at", "2021-10-25 22:45:19.206992"], ["updated_at", "2021-10-25 22:45:19.206992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 83], ["created_at", "2021-10-25 22:45:19.208364"], ["updated_at", "2021-10-25 22:45:19.208364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/219/edit” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"219"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 219], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.9ms)

Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.5ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:19.221741"], ["updated_at", "2021-10-25 22:45:19.221741"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 84], ["created_at", "2021-10-25 22:45:19.223237"], ["updated_at", "2021-10-25 22:45:19.223237"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 84], ["created_at", "2021-10-25 22:45:19.224497"], ["updated_at", "2021-10-25 22:45:19.224497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms) Started DELETE “/pets/221” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"221"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 221], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (2.2ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 221]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 2.6ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:19.248073"], ["updated_at", "2021-10-25 22:45:19.248073"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 85], ["created_at", "2021-10-25 22:45:19.249581"], ["updated_at", "2021-10-25 22:45:19.249581"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 85], ["created_at", "2021-10-25 22:45:19.250820"], ["updated_at", "2021-10-25 22:45:19.250820"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 85], ["created_at", "2021-10-25 22:45:19.252305"], ["updated_at", "2021-10-25 22:45:19.252305"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.5ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (0.1ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)

 (0.3ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:43.824856"], ["updated_at", "2021-10-25 22:45:43.824856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 86], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 86], ["created_at", "2021-10-25 22:45:43.863552"], ["updated_at", "2021-10-25 22:45:43.863552"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 86], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 86], ["created_at", "2021-10-25 22:45:43.867086"], ["updated_at", "2021-10-25 22:45:43.867086"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:43 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 86], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 86], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.4ms)

Completed 200 OK in 88ms (Views: 83.6ms | ActiveRecord: 0.9ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:44.020453"], ["updated_at", "2021-10-25 22:45:44.020453"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 87], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 87], ["created_at", "2021-10-25 22:45:44.022877"], ["updated_at", "2021-10-25 22:45:44.022877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 87], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 87], ["created_at", "2021-10-25 22:45:44.024413"], ["updated_at", "2021-10-25 22:45:44.024413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 87], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 87], ["created_at", "2021-10-25 22:45:44.026172"], ["updated_at", "2021-10-25 22:45:44.026172"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 87], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 87], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:44.032059"], ["updated_at", "2021-10-25 22:45:44.032059"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 88], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 88], ["created_at", "2021-10-25 22:45:44.033576"], ["updated_at", "2021-10-25 22:45:44.033576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 88], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 88], ["created_at", "2021-10-25 22:45:44.035101"], ["updated_at", "2021-10-25 22:45:44.035101"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 88], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 88], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms) Started GET “/pets/231/edit” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"231"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 231], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.9ms)

Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:44.046658"], ["updated_at", "2021-10-25 22:45:44.046658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 89], ["created_at", "2021-10-25 22:45:44.047945"], ["updated_at", "2021-10-25 22:45:44.047945"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 89], ["created_at", "2021-10-25 22:45:44.049453"], ["updated_at", "2021-10-25 22:45:44.049453"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms) Started DELETE “/pets/233” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"233"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 233], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.5ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 233]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:44.070809"], ["updated_at", "2021-10-25 22:45:44.070809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 90], ["created_at", "2021-10-25 22:45:44.072842"], ["updated_at", "2021-10-25 22:45:44.072842"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 90], ["created_at", "2021-10-25 22:45:44.074837"], ["updated_at", "2021-10-25 22:45:44.074837"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 90], ["created_at", "2021-10-25 22:45:44.076363"], ["updated_at", "2021-10-25 22:45:44.076363"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.3ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 1.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)

 (0.4ms)  ROLLBACK
 (1.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:00:02.682985"], ["updated_at", "2021-10-25 23:00:02.682985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 91], ["LIMIT", 1]]
Pet Create (1.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 91], ["created_at", "2021-10-25 23:00:02.715370"], ["updated_at", "2021-10-25 23:00:02.715370"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 91], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 91], ["created_at", "2021-10-25 23:00:02.718066"], ["updated_at", "2021-10-25 23:00:02.718066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 91], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 91], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.7ms)

Completed 200 OK in 100ms (Views: 95.2ms | ActiveRecord: 0.8ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:00:02.874325"], ["updated_at", "2021-10-25 23:00:02.874325"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 92], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 92], ["created_at", "2021-10-25 23:00:02.876588"], ["updated_at", "2021-10-25 23:00:02.876588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 92], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 92], ["created_at", "2021-10-25 23:00:02.897637"], ["updated_at", "2021-10-25 23:00:02.897637"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 92], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 92], ["created_at", "2021-10-25 23:00:02.899856"], ["updated_at", "2021-10-25 23:00:02.899856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 92], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 92], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:00:02.907447"], ["updated_at", "2021-10-25 23:00:02.907447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 93], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 93], ["created_at", "2021-10-25 23:00:02.909155"], ["updated_at", "2021-10-25 23:00:02.909155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 93], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 93], ["created_at", "2021-10-25 23:00:02.910895"], ["updated_at", "2021-10-25 23:00:02.910895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 93], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 93], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started GET “/pets/243/edit” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"243"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 243], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:00:02.924316"], ["updated_at", "2021-10-25 23:00:02.924316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 94], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 94], ["created_at", "2021-10-25 23:00:02.925719"], ["updated_at", "2021-10-25 23:00:02.925719"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 94], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 94], ["created_at", "2021-10-25 23:00:02.927129"], ["updated_at", "2021-10-25 23:00:02.927129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 94], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 94], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms) Started DELETE “/pets/245” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"245"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 245], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (2.2ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 245]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.5ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 94], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:00:02.949809"], ["updated_at", "2021-10-25 23:00:02.949809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 95], ["created_at", "2021-10-25 23:00:02.951306"], ["updated_at", "2021-10-25 23:00:02.951306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 95], ["created_at", "2021-10-25 23:00:02.952535"], ["updated_at", "2021-10-25 23:00:02.952535"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 95], ["created_at", "2021-10-25 23:00:02.953842"], ["updated_at", "2021-10-25 23:00:02.953842"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.5ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 1.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

No template found for ApplicationsController#create, rendering head :no_content Completed 204 No Content in 963214ms (ActiveRecord: 0.0ms)

Application Load (0.8ms)  SELECT  "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1  [["LIMIT", 1]]
 (0.6ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:16:11.672630"], ["updated_at", "2021-10-25 23:16:11.672630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 96], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 96], ["created_at", "2021-10-25 23:16:11.702753"], ["updated_at", "2021-10-25 23:16:11.702753"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 96], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 96], ["created_at", "2021-10-25 23:16:11.705180"], ["updated_at", "2021-10-25 23:16:11.705180"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 96], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 96], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.5ms)

Completed 200 OK in 93ms (Views: 88.3ms | ActiveRecord: 0.7ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:16:11.855495"], ["updated_at", "2021-10-25 23:16:11.855495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 97], ["created_at", "2021-10-25 23:16:11.877239"], ["updated_at", "2021-10-25 23:16:11.877239"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 97], ["created_at", "2021-10-25 23:16:11.879395"], ["updated_at", "2021-10-25 23:16:11.879395"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 97], ["created_at", "2021-10-25 23:16:11.881007"], ["updated_at", "2021-10-25 23:16:11.881007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:16:11.887561"], ["updated_at", "2021-10-25 23:16:11.887561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 98], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 98], ["created_at", "2021-10-25 23:16:11.889038"], ["updated_at", "2021-10-25 23:16:11.889038"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 98], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 98], ["created_at", "2021-10-25 23:16:11.890466"], ["updated_at", "2021-10-25 23:16:11.890466"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 98], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 98], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.4ms) Started GET “/pets/255/edit” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"255"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 255], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:16:11.903883"], ["updated_at", "2021-10-25 23:16:11.903883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 99], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 99], ["created_at", "2021-10-25 23:16:11.905729"], ["updated_at", "2021-10-25 23:16:11.905729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 99], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 99], ["created_at", "2021-10-25 23:16:11.907139"], ["updated_at", "2021-10-25 23:16:11.907139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 99], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 99], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.5ms) Started DELETE “/pets/257” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"257"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 257], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.5ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 257]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 1.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 99], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:16:11.929871"], ["updated_at", "2021-10-25 23:16:11.929871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 100], ["created_at", "2021-10-25 23:16:11.931421"], ["updated_at", "2021-10-25 23:16:11.931421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 100], ["created_at", "2021-10-25 23:16:11.933063"], ["updated_at", "2021-10-25 23:16:11.933063"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 100], ["created_at", "2021-10-25 23:16:11.934289"], ["updated_at", "2021-10-25 23:16:11.934289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.3ms)

Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Application Create (1.0ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:17:00.612007"], ["updated_at", "2021-10-25 23:17:00.612007"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Application Update (1.6ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:17:39.938167"], ["id", 13]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Completed 500 Internal Server Error in 98331ms (ActiveRecord: 12.8ms)

 (0.4ms)  ROLLBACK
 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:02.180332"], ["updated_at", "2021-10-25 23:18:02.180332"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 101], ["created_at", "2021-10-25 23:18:02.209331"], ["updated_at", "2021-10-25 23:18:02.209331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 101], ["created_at", "2021-10-25 23:18:02.211516"], ["updated_at", "2021-10-25 23:18:02.211516"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.3ms)

Completed 200 OK in 92ms (Views: 87.6ms | ActiveRecord: 0.8ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:02.356757"], ["updated_at", "2021-10-25 23:18:02.356757"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 102], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 102], ["created_at", "2021-10-25 23:18:02.359239"], ["updated_at", "2021-10-25 23:18:02.359239"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 102], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 102], ["created_at", "2021-10-25 23:18:02.378190"], ["updated_at", "2021-10-25 23:18:02.378190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 102], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 102], ["created_at", "2021-10-25 23:18:02.379932"], ["updated_at", "2021-10-25 23:18:02.379932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 102], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 102], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:02.386295"], ["updated_at", "2021-10-25 23:18:02.386295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 103], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 103], ["created_at", "2021-10-25 23:18:02.387935"], ["updated_at", "2021-10-25 23:18:02.387935"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 103], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 103], ["created_at", "2021-10-25 23:18:02.389352"], ["updated_at", "2021-10-25 23:18:02.389352"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 103], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 103], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.4ms) Started GET “/pets/267/edit” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"267"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 267], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:02.403848"], ["updated_at", "2021-10-25 23:18:02.403848"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 104], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 104], ["created_at", "2021-10-25 23:18:02.405401"], ["updated_at", "2021-10-25 23:18:02.405401"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 104], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 104], ["created_at", "2021-10-25 23:18:02.407330"], ["updated_at", "2021-10-25 23:18:02.407330"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 104], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 104], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started DELETE “/pets/269” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"269"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 269], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.7ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 269]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.1ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 104], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:02.430437"], ["updated_at", "2021-10-25 23:18:02.430437"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 105], ["created_at", "2021-10-25 23:18:02.432219"], ["updated_at", "2021-10-25 23:18:02.432219"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 105], ["created_at", "2021-10-25 23:18:02.433514"], ["updated_at", "2021-10-25 23:18:02.433514"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 105], ["created_at", "2021-10-25 23:18:02.435051"], ["updated_at", "2021-10-25 23:18:02.435051"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:18:02.480162"], ["updated_at", "2021-10-25 23:18:02.480162"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.7ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:18:02.481896"], ["id", 14]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/application/14 Completed 302 Found in 21ms (ActiveRecord: 12.1ms) Started GET “/application/14” for 127.0.0.1 at 2021-10-25 17:18:02 -0600

 (0.1ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:41.798630"], ["updated_at", "2021-10-25 23:18:41.798630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 106], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 106], ["created_at", "2021-10-25 23:18:41.830826"], ["updated_at", "2021-10-25 23:18:41.830826"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 106], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 106], ["created_at", "2021-10-25 23:18:41.833007"], ["updated_at", "2021-10-25 23:18:41.833007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:41 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 106], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 106], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.5ms)

Completed 200 OK in 89ms (Views: 84.2ms | ActiveRecord: 0.9ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:41.975420"], ["updated_at", "2021-10-25 23:18:41.975420"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 107], ["created_at", "2021-10-25 23:18:41.995147"], ["updated_at", "2021-10-25 23:18:41.995147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 107], ["created_at", "2021-10-25 23:18:41.997348"], ["updated_at", "2021-10-25 23:18:41.997348"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 107], ["created_at", "2021-10-25 23:18:41.999069"], ["updated_at", "2021-10-25 23:18:41.999069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:42.006032"], ["updated_at", "2021-10-25 23:18:42.006032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 108], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 108], ["created_at", "2021-10-25 23:18:42.007988"], ["updated_at", "2021-10-25 23:18:42.007988"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 108], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 108], ["created_at", "2021-10-25 23:18:42.009409"], ["updated_at", "2021-10-25 23:18:42.009409"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 108], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 108], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms) Started GET “/pets/279/edit” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"279"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 279], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.1ms)

Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:42.022039"], ["updated_at", "2021-10-25 23:18:42.022039"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 109], ["created_at", "2021-10-25 23:18:42.024363"], ["updated_at", "2021-10-25 23:18:42.024363"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 109], ["created_at", "2021-10-25 23:18:42.025716"], ["updated_at", "2021-10-25 23:18:42.025716"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms) Started DELETE “/pets/281” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"281"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 281], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.4ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 281]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 1.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:42.048298"], ["updated_at", "2021-10-25 23:18:42.048298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 110], ["created_at", "2021-10-25 23:18:42.049704"], ["updated_at", "2021-10-25 23:18:42.049704"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 110], ["created_at", "2021-10-25 23:18:42.051250"], ["updated_at", "2021-10-25 23:18:42.051250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 110], ["created_at", "2021-10-25 23:18:42.052965"], ["updated_at", "2021-10-25 23:18:42.052965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.1ms)

Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.8ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:18:42.098374"], ["updated_at", "2021-10-25 23:18:42.098374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.5ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:18:42.100183"], ["id", 15]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/application/15 Completed 302 Found in 20ms (ActiveRecord: 11.6ms) Started GET “/application/15” for 127.0.0.1 at 2021-10-25 17:18:42 -0600

 (0.1ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:39.629534"], ["updated_at", "2021-10-25 23:21:39.629534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Pet Create (1.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 111], ["created_at", "2021-10-25 23:21:39.665126"], ["updated_at", "2021-10-25 23:21:39.665126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 111], ["created_at", "2021-10-25 23:21:39.668461"], ["updated_at", "2021-10-25 23:21:39.668461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.3ms)

Completed 200 OK in 91ms (Views: 86.2ms | ActiveRecord: 0.8ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:39.844371"], ["updated_at", "2021-10-25 23:21:39.844371"]]
 (0.8ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 112], ["created_at", "2021-10-25 23:21:39.847406"], ["updated_at", "2021-10-25 23:21:39.847406"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 112], ["created_at", "2021-10-25 23:21:39.848982"], ["updated_at", "2021-10-25 23:21:39.848982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 112], ["created_at", "2021-10-25 23:21:39.850419"], ["updated_at", "2021-10-25 23:21:39.850419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.3ms)

Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.9ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:39.859531"], ["updated_at", "2021-10-25 23:21:39.859531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 113], ["created_at", "2021-10-25 23:21:39.861290"], ["updated_at", "2021-10-25 23:21:39.861290"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 113], ["created_at", "2021-10-25 23:21:39.863176"], ["updated_at", "2021-10-25 23:21:39.863176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started GET “/pets/291/edit” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"291"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 291], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.3ms)

Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:39.877179"], ["updated_at", "2021-10-25 23:21:39.877179"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 114], ["created_at", "2021-10-25 23:21:39.878981"], ["updated_at", "2021-10-25 23:21:39.878981"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 114], ["created_at", "2021-10-25 23:21:39.880377"], ["updated_at", "2021-10-25 23:21:39.880377"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started DELETE “/pets/293” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"293"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 293], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (2.0ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 293]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 2.7ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:39.904781"], ["updated_at", "2021-10-25 23:21:39.904781"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 115], ["created_at", "2021-10-25 23:21:39.906785"], ["updated_at", "2021-10-25 23:21:39.906785"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 115], ["created_at", "2021-10-25 23:21:39.908272"], ["updated_at", "2021-10-25 23:21:39.908272"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 115], ["created_at", "2021-10-25 23:21:39.909609"], ["updated_at", "2021-10-25 23:21:39.909609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:21:39.953008"], ["updated_at", "2021-10-25 23:21:39.953008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.8ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:21:39.954817"], ["id", 16]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/16 Completed 302 Found in 19ms (ActiveRecord: 10.5ms) Started GET “/applications/16” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"16"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 16], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 16)
Rendered applications/show.html.erb within layouts/application (6.2ms)

Completed 200 OK in 8ms (Views: 5.2ms | ActiveRecord: 1.8ms)

 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:51.608876"], ["updated_at", "2021-10-25 23:21:51.608876"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 116], ["created_at", "2021-10-25 23:21:51.647849"], ["updated_at", "2021-10-25 23:21:51.647849"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 116], ["created_at", "2021-10-25 23:21:51.651098"], ["updated_at", "2021-10-25 23:21:51.651098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (6.7ms)

Completed 200 OK in 88ms (Views: 83.3ms | ActiveRecord: 0.6ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:51.799977"], ["updated_at", "2021-10-25 23:21:51.799977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 117], ["created_at", "2021-10-25 23:21:51.801659"], ["updated_at", "2021-10-25 23:21:51.801659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 117], ["created_at", "2021-10-25 23:21:51.803551"], ["updated_at", "2021-10-25 23:21:51.803551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 117], ["created_at", "2021-10-25 23:21:51.805063"], ["updated_at", "2021-10-25 23:21:51.805063"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:51.811090"], ["updated_at", "2021-10-25 23:21:51.811090"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 118], ["created_at", "2021-10-25 23:21:51.812558"], ["updated_at", "2021-10-25 23:21:51.812558"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 118], ["created_at", "2021-10-25 23:21:51.813797"], ["updated_at", "2021-10-25 23:21:51.813797"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/303/edit” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"303"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 303], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:51.825447"], ["updated_at", "2021-10-25 23:21:51.825447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 119], ["created_at", "2021-10-25 23:21:51.827131"], ["updated_at", "2021-10-25 23:21:51.827131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 119], ["created_at", "2021-10-25 23:21:51.828548"], ["updated_at", "2021-10-25 23:21:51.828548"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started DELETE “/pets/305” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"305"}
Pet Load (0.6ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 305], ["LIMIT", 1]]
 (0.3ms)  SAVEPOINT active_record_1
Pet Destroy (2.5ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 305]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 3.4ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:51.851138"], ["updated_at", "2021-10-25 23:21:51.851138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 120], ["created_at", "2021-10-25 23:21:51.852663"], ["updated_at", "2021-10-25 23:21:51.852663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 120], ["created_at", "2021-10-25 23:21:51.854313"], ["updated_at", "2021-10-25 23:21:51.854313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 120], ["created_at", "2021-10-25 23:21:51.856182"], ["updated_at", "2021-10-25 23:21:51.856182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Application Create (1.0ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:21:51.900959"], ["updated_at", "2021-10-25 23:21:51.900959"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.7ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:21:51.902865"], ["id", 17]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/17 Completed 302 Found in 22ms (ActiveRecord: 12.0ms) Started GET “/applications/17” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"17"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 17)
Rendered applications/show.html.erb within layouts/application (6.1ms)

Completed 200 OK in 8ms (Views: 5.1ms | ActiveRecord: 1.9ms)

Application Load (0.3ms)  SELECT  "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1  [["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (1.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:22:15.638988"], ["updated_at", "2021-10-25 23:22:15.638988"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 121], ["created_at", "2021-10-25 23:22:15.670691"], ["updated_at", "2021-10-25 23:22:15.670691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 121], ["created_at", "2021-10-25 23:22:15.673217"], ["updated_at", "2021-10-25 23:22:15.673217"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (6.5ms)

Completed 200 OK in 89ms (Views: 84.9ms | ActiveRecord: 0.6ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:22:15.814262"], ["updated_at", "2021-10-25 23:22:15.814262"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 122], ["created_at", "2021-10-25 23:22:15.832909"], ["updated_at", "2021-10-25 23:22:15.832909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 122], ["created_at", "2021-10-25 23:22:15.834875"], ["updated_at", "2021-10-25 23:22:15.834875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 122], ["created_at", "2021-10-25 23:22:15.836322"], ["updated_at", "2021-10-25 23:22:15.836322"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:22:15.844050"], ["updated_at", "2021-10-25 23:22:15.844050"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 123], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 123], ["created_at", "2021-10-25 23:22:15.845652"], ["updated_at", "2021-10-25 23:22:15.845652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 123], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 123], ["created_at", "2021-10-25 23:22:15.847302"], ["updated_at", "2021-10-25 23:22:15.847302"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 123], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 123], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.7ms) Started GET “/pets/315/edit” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"315"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 315], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.8ms)

Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:22:15.860220"], ["updated_at", "2021-10-25 23:22:15.860220"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 124], ["created_at", "2021-10-25 23:22:15.861866"], ["updated_at", "2021-10-25 23:22:15.861866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 124], ["created_at", "2021-10-25 23:22:15.863337"], ["updated_at", "2021-10-25 23:22:15.863337"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started DELETE “/pets/317” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"317"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 317], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.6ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 317]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:22:15.884006"], ["updated_at", "2021-10-25 23:22:15.884006"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 125], ["created_at", "2021-10-25 23:22:15.885763"], ["updated_at", "2021-10-25 23:22:15.885763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 125], ["created_at", "2021-10-25 23:22:15.887040"], ["updated_at", "2021-10-25 23:22:15.887040"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 125], ["created_at", "2021-10-25 23:22:15.888285"], ["updated_at", "2021-10-25 23:22:15.888285"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.9ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.9ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Application Create (1.1ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:22:15.937546"], ["updated_at", "2021-10-25 23:22:15.937546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.7ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:22:15.939707"], ["id", 18]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/18 Completed 302 Found in 24ms (ActiveRecord: 14.5ms) Started GET “/applications/18” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"18"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 18], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.2ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 18)
Rendered applications/show.html.erb within layouts/application (6.1ms)

Completed 200 OK in 9ms (Views: 5.5ms | ActiveRecord: 1.6ms)

Application Load (0.5ms)  SELECT  "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1  [["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (22.8ms)  DROP DATABASE IF EXISTS "adopt_dont_shop_test"
 (192.0ms)  CREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'
SQL (1.1ms)  CREATE EXTENSION IF NOT EXISTS "plpgsql"
 (1.7ms)  DROP TABLE IF EXISTS "application_pets" CASCADE
 (7.0ms)  CREATE TABLE "application_pets" ("id" bigserial primary key, "pet_id" bigint, "application_id" bigint, "status" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (1.0ms)  CREATE  INDEX  "index_application_pets_on_application_id" ON "application_pets"  ("application_id")
 (0.8ms)  CREATE  INDEX  "index_application_pets_on_pet_id" ON "application_pets"  ("pet_id")
 (0.2ms)  DROP TABLE IF EXISTS "applications" CASCADE
 (3.4ms)  CREATE TABLE "applications" ("id" bigserial primary key, "applicant_name" character varying, "street_address" character varying, "city" character varying, "state" character varying, "zipcode" character varying, "application_status" character varying, "why" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.2ms)  DROP TABLE IF EXISTS "pets" CASCADE
 (4.0ms)  CREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (1.3ms)  CREATE  INDEX  "index_pets_on_shelter_id" ON "pets"  ("shelter_id")
 (0.9ms)  DROP TABLE IF EXISTS "shelters" CASCADE
 (3.6ms)  CREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (1.4ms)  DROP TABLE IF EXISTS "veterinarians" CASCADE
 (3.8ms)  CREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.9ms)  CREATE  INDEX  "index_veterinarians_on_veterinary_office_id" ON "veterinarians"  ("veterinary_office_id")
 (0.3ms)  DROP TABLE IF EXISTS "veterinary_offices" CASCADE
 (3.4ms)  CREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (3.7ms)  ALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_6ac8983e3b"

FOREIGN KEY (“application_id”)

REFERENCES "applications" ("id")



 (1.9ms)  ALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_412710cd26"

FOREIGN KEY (“pet_id”)

REFERENCES "pets" ("id")



 (1.9ms)  ALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"

FOREIGN KEY (“shelter_id”)

REFERENCES "shelters" ("id")



 (1.7ms)  ALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"

FOREIGN KEY (“veterinary_office_id”)

REFERENCES "veterinary_offices" ("id")



 (3.7ms)  CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
 (0.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.4ms)  INSERT INTO "schema_migrations" (version) VALUES (20211024000652)
 (0.3ms)  INSERT INTO "schema_migrations" (version) VALUES

(20210212235502), (20210213001632), (20210212235735), (20211023230147), (20210213001717);



 (4.3ms)  CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
ActiveRecord::InternalMetadata Load (0.6ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
ActiveRecord::InternalMetadata Create (0.4ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"  [["key", "environment"], ["value", "test"], ["created_at", "2021-10-26 01:12:45.887857"], ["updated_at", "2021-10-26 01:12:45.887857"]]
 (0.2ms)  COMMIT
ActiveRecord::InternalMetadata Load (0.2ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
 (0.1ms)  COMMIT
 (0.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:12:45.985922"], ["updated_at", "2021-10-26 01:12:45.985922"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 1], ["created_at", "2021-10-26 01:12:46.029049"], ["updated_at", "2021-10-26 01:12:46.029049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 1], ["created_at", "2021-10-26 01:12:46.031811"], ["updated_at", "2021-10-26 01:12:46.031811"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 1], ["created_at", "2021-10-26 01:12:46.033244"], ["updated_at", "2021-10-26 01:12:46.033244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:12:46.049621"], ["updated_at", "2021-10-26 01:12:46.049621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (2.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 1], ["application_id", 1], ["created_at", "2021-10-26 01:12:46.067966"], ["updated_at", "2021-10-26 01:12:46.067966"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 2], ["application_id", 1], ["created_at", "2021-10-26 01:12:46.071583"], ["updated_at", "2021-10-26 01:12:46.071583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/1” for 127.0.0.1 at 2021-10-25 19:12:46 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"1"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 1)
Rendered applications/show.html.erb within layouts/application (18.4ms)

Completed 200 OK in 10948ms (Views: 189.7ms | ActiveRecord: 2.9ms) Started GET “/pets/1” for 127.0.0.1 at 2021-10-25 19:12:57 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"1"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.6ms) Started GET “/applications/1” for 127.0.0.1 at 2021-10-25 19:12:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"1"}
Application Load (0.6ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 1)
Rendered applications/show.html.erb within layouts/application (2.9ms)

Completed 200 OK in 16170ms (Views: 3.8ms | ActiveRecord: 1.4ms) Started GET “/pets/2” for 127.0.0.1 at 2021-10-25 19:13:13 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"2"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.8ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:13:13.294312"], ["updated_at", "2021-10-26 01:13:13.294312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 2], ["created_at", "2021-10-26 01:13:13.296079"], ["updated_at", "2021-10-26 01:13:13.296079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 2], ["created_at", "2021-10-26 01:13:13.297389"], ["updated_at", "2021-10-26 01:13:13.297389"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 2], ["created_at", "2021-10-26 01:13:13.298694"], ["updated_at", "2021-10-26 01:13:13.298694"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:13:13.299720"], ["updated_at", "2021-10-26 01:13:13.299720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/2” for 127.0.0.1 at 2021-10-25 19:13:13 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"2"}
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 2)
Rendered applications/show.html.erb within layouts/application (2.7ms)

Completed 200 OK in 4034ms (Views: 3.1ms | ActiveRecord: 1.5ms) Started GET “/applications/2?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-25 19:13:17 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"2"}

Completed 500 Internal Server Error in 739583ms (ActiveRecord: 0.0ms)

 (2.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:32:32.032611"], ["updated_at", "2021-10-26 01:32:32.032611"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 3], ["created_at", "2021-10-26 01:32:32.065917"], ["updated_at", "2021-10-26 01:32:32.065917"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 3], ["created_at", "2021-10-26 01:32:32.067984"], ["updated_at", "2021-10-26 01:32:32.067984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 3], ["created_at", "2021-10-26 01:32:32.069347"], ["updated_at", "2021-10-26 01:32:32.069347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:32:32.086031"], ["updated_at", "2021-10-26 01:32:32.086031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 7], ["application_id", 3], ["created_at", "2021-10-26 01:32:32.103803"], ["updated_at", "2021-10-26 01:32:32.103803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 8], ["application_id", 3], ["created_at", "2021-10-26 01:32:32.106428"], ["updated_at", "2021-10-26 01:32:32.106428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/3” for 127.0.0.1 at 2021-10-25 19:32:32 -0600

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:32:32.154385"], ["updated_at", "2021-10-26 01:32:32.154385"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 4], ["created_at", "2021-10-26 01:32:32.155861"], ["updated_at", "2021-10-26 01:32:32.155861"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 4], ["created_at", "2021-10-26 01:32:32.157448"], ["updated_at", "2021-10-26 01:32:32.157448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 4], ["created_at", "2021-10-26 01:32:32.158561"], ["updated_at", "2021-10-26 01:32:32.158561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:32:32.159570"], ["updated_at", "2021-10-26 01:32:32.159570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/4” for 127.0.0.1 at 2021-10-25 19:32:32 -0600

 (0.1ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:38:19.657821"], ["updated_at", "2021-10-26 01:38:19.657821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 5], ["created_at", "2021-10-26 01:38:19.699053"], ["updated_at", "2021-10-26 01:38:19.699053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 5], ["created_at", "2021-10-26 01:38:19.702115"], ["updated_at", "2021-10-26 01:38:19.702115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 5], ["created_at", "2021-10-26 01:38:19.703541"], ["updated_at", "2021-10-26 01:38:19.703541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:38:19.732995"], ["updated_at", "2021-10-26 01:38:19.732995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 13], ["application_id", 5], ["created_at", "2021-10-26 01:38:19.754091"], ["updated_at", "2021-10-26 01:38:19.754091"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 14], ["application_id", 5], ["created_at", "2021-10-26 01:38:19.756793"], ["updated_at", "2021-10-26 01:38:19.756793"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/5” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"5"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 5)
Rendered applications/show.html.erb within layouts/application (8.0ms)

Completed 200 OK in 98ms (Views: 91.3ms | ActiveRecord: 1.6ms) Started GET “/pets/13” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"13"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.6ms) Started GET “/applications/5” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"5"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 5)
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.2ms) Started GET “/pets/14” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"14"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:38:19.927203"], ["updated_at", "2021-10-26 01:38:19.927203"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 6], ["created_at", "2021-10-26 01:38:19.928694"], ["updated_at", "2021-10-26 01:38:19.928694"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 6], ["created_at", "2021-10-26 01:38:19.930155"], ["updated_at", "2021-10-26 01:38:19.930155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 6], ["created_at", "2021-10-26 01:38:19.931182"], ["updated_at", "2021-10-26 01:38:19.931182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:38:19.932283"], ["updated_at", "2021-10-26 01:38:19.932283"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/6” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"6"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 6)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.7ms) Started GET “/applications/6?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"6"}
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Application Load (0.7ms)  SELECT "applications".* FROM "applications"
Application Load (0.6ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Pet Load (6.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%)
Pet Load (0.9ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%) LIMIT $1  [["LIMIT", 11]]
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%)
Pet Load (1.0ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%) LIMIT $1  [["LIMIT", 11]]
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%)
Pet Load (0.8ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%) LIMIT $1  [["LIMIT", 11]]
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%)
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%) LIMIT $1  [["LIMIT", 11]]
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%)
 (1.0ms)  SELECT COUNT(*) FROM "pets" WHERE (lower(pets.name) like %'b'%)
Pet Load (3.7ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%'b'%')
Pet Load (0.8ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%'b'%') LIMIT $1  [["LIMIT", 11]]
Pet Load (1.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%'b'%')
Pet Load (0.8ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%'b'%') LIMIT $1  [["LIMIT", 11]]
 (1.2ms)  SELECT COUNT(*) FROM "pets" WHERE (lower(pets.name) like '%'b'%')
Pet Load (2.7ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Pet Load (0.7ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
 (1.0ms)  SELECT COUNT(*) FROM "pets" WHERE (lower(pets.name) like '%b%')

Completed 500 Internal Server Error in 784565ms (ActiveRecord: 28.1ms)

 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:11:13.915427"], ["updated_at", "2021-10-26 02:11:13.915427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 7], ["created_at", "2021-10-26 02:11:13.948850"], ["updated_at", "2021-10-26 02:11:13.948850"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 7], ["created_at", "2021-10-26 02:11:13.951580"], ["updated_at", "2021-10-26 02:11:13.951580"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 7], ["created_at", "2021-10-26 02:11:13.952698"], ["updated_at", "2021-10-26 02:11:13.952698"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:11:13.970496"], ["updated_at", "2021-10-26 02:11:13.970496"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 19], ["application_id", 7], ["created_at", "2021-10-26 02:11:13.987826"], ["updated_at", "2021-10-26 02:11:13.987826"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 20], ["application_id", 7], ["created_at", "2021-10-26 02:11:13.990243"], ["updated_at", "2021-10-26 02:11:13.990243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/7” for 127.0.0.1 at 2021-10-25 20:11:13 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"7"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]

Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:11:14.052473"], ["updated_at", "2021-10-26 02:11:14.052473"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 8], ["created_at", "2021-10-26 02:11:14.054437"], ["updated_at", "2021-10-26 02:11:14.054437"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 8], ["created_at", "2021-10-26 02:11:14.055665"], ["updated_at", "2021-10-26 02:11:14.055665"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 8], ["created_at", "2021-10-26 02:11:14.056739"], ["updated_at", "2021-10-26 02:11:14.056739"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:11:14.057648"], ["updated_at", "2021-10-26 02:11:14.057648"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/8” for 127.0.0.1 at 2021-10-25 20:11:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"8"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]

Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:12:24.768140"], ["updated_at", "2021-10-26 02:12:24.768140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 9], ["created_at", "2021-10-26 02:12:24.810542"], ["updated_at", "2021-10-26 02:12:24.810542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 9], ["created_at", "2021-10-26 02:12:24.814354"], ["updated_at", "2021-10-26 02:12:24.814354"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 9], ["created_at", "2021-10-26 02:12:24.816251"], ["updated_at", "2021-10-26 02:12:24.816251"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:12:24.842470"], ["updated_at", "2021-10-26 02:12:24.842470"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 25], ["application_id", 9], ["created_at", "2021-10-26 02:12:24.866865"], ["updated_at", "2021-10-26 02:12:24.866865"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 26], ["application_id", 9], ["created_at", "2021-10-26 02:12:24.869688"], ["updated_at", "2021-10-26 02:12:24.869688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/9” for 127.0.0.1 at 2021-10-25 20:12:24 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"9"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
CACHE Application Load (0.0ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 9)
Rendered applications/show.html.erb within layouts/application (9.9ms)

Completed 200 OK in 101ms (Views: 91.7ms | ActiveRecord: 2.9ms) Started GET “/pets/25” for 127.0.0.1 at 2021-10-25 20:12:24 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"25"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 25], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.6ms) Started GET “/applications/9” for 127.0.0.1 at 2021-10-25 20:12:24 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"9"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
CACHE Application Load (0.0ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 9)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.9ms) Started GET “/pets/26” for 127.0.0.1 at 2021-10-25 20:12:25 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"26"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 26], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.4ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:12:25.043540"], ["updated_at", "2021-10-26 02:12:25.043540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 10], ["created_at", "2021-10-26 02:12:25.045030"], ["updated_at", "2021-10-26 02:12:25.045030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 10], ["created_at", "2021-10-26 02:12:25.046517"], ["updated_at", "2021-10-26 02:12:25.046517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 10], ["created_at", "2021-10-26 02:12:25.047505"], ["updated_at", "2021-10-26 02:12:25.047505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:12:25.048416"], ["updated_at", "2021-10-26 02:12:25.048416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/10” for 127.0.0.1 at 2021-10-25 20:12:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"10"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
CACHE Application Load (0.0ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 10)
Rendered applications/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.7ms) Started GET “/applications/10?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-25 20:12:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"10"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
CACHE Application Load (0.0ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Pet Load (2.3ms)  SELECT "pets".* FROM "pets" WHERE (pets.name like '%b%')
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" WHERE (pets.name like '%b%')
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (pets.name like 'b')
Pet Load (0.5ms)  SELECT "pets".* FROM "pets"
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (pets.name like 'Bella')
Pet Load (2.1ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like 'b')
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like 'bella')
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')

Completed 500 Internal Server Error in 330094ms (ActiveRecord: 7.9ms)

 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:18:38.025785"], ["updated_at", "2021-10-26 02:18:38.025785"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 11], ["created_at", "2021-10-26 02:18:38.055680"], ["updated_at", "2021-10-26 02:18:38.055680"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 11], ["created_at", "2021-10-26 02:18:38.057922"], ["updated_at", "2021-10-26 02:18:38.057922"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 11], ["created_at", "2021-10-26 02:18:38.059266"], ["updated_at", "2021-10-26 02:18:38.059266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:18:38.073196"], ["updated_at", "2021-10-26 02:18:38.073196"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 31], ["application_id", 11], ["created_at", "2021-10-26 02:18:38.085171"], ["updated_at", "2021-10-26 02:18:38.085171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 32], ["application_id", 11], ["created_at", "2021-10-26 02:18:38.087020"], ["updated_at", "2021-10-26 02:18:38.087020"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/11” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"11"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
CACHE Application Load (0.0ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 11)
Rendered applications/show.html.erb within layouts/application (8.1ms)

Completed 200 OK in 93ms (Views: 85.3ms | ActiveRecord: 2.1ms) Started GET “/pets/31” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"31"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/11” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"11"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
CACHE Application Load (0.0ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 11)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.8ms) Started GET “/pets/32” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"32"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:18:38.266675"], ["updated_at", "2021-10-26 02:18:38.266675"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 12], ["created_at", "2021-10-26 02:18:38.268302"], ["updated_at", "2021-10-26 02:18:38.268302"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 12], ["created_at", "2021-10-26 02:18:38.269602"], ["updated_at", "2021-10-26 02:18:38.269602"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 12], ["created_at", "2021-10-26 02:18:38.270819"], ["updated_at", "2021-10-26 02:18:38.270819"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:18:38.272155"], ["updated_at", "2021-10-26 02:18:38.272155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/12” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"12"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
CACHE Application Load (0.0ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 12)
Rendered applications/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.1ms) Started GET “/applications/12?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"12"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
CACHE Application Load (0.0ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Rendered applications/show.html.erb within layouts/application (4.9ms)

Completed 500 Internal Server Error in 6ms (ActiveRecord: 1.2ms)

 (0.1ms)  ROLLBACK
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:24:19.051762"], ["updated_at", "2021-10-26 02:24:19.051762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 13], ["created_at", "2021-10-26 02:24:19.091645"], ["updated_at", "2021-10-26 02:24:19.091645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 13], ["created_at", "2021-10-26 02:24:19.095130"], ["updated_at", "2021-10-26 02:24:19.095130"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 13], ["created_at", "2021-10-26 02:24:19.097085"], ["updated_at", "2021-10-26 02:24:19.097085"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:24:19.121883"], ["updated_at", "2021-10-26 02:24:19.121883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 37], ["application_id", 13], ["created_at", "2021-10-26 02:24:19.139274"], ["updated_at", "2021-10-26 02:24:19.139274"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 38], ["application_id", 13], ["created_at", "2021-10-26 02:24:19.141924"], ["updated_at", "2021-10-26 02:24:19.141924"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/13” for 127.0.0.1 at 2021-10-25 20:24:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"13"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
CACHE Application Load (0.0ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.5ms)

Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.3ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:24:19.199138"], ["updated_at", "2021-10-26 02:24:19.199138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 14], ["created_at", "2021-10-26 02:24:19.200675"], ["updated_at", "2021-10-26 02:24:19.200675"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 14], ["created_at", "2021-10-26 02:24:19.202177"], ["updated_at", "2021-10-26 02:24:19.202177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 14], ["created_at", "2021-10-26 02:24:19.203239"], ["updated_at", "2021-10-26 02:24:19.203239"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:24:19.204240"], ["updated_at", "2021-10-26 02:24:19.204240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/14” for 127.0.0.1 at 2021-10-25 20:24:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"14"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
CACHE Application Load (0.0ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.4ms)

Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:28:31.314497"], ["updated_at", "2021-10-26 02:28:31.314497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 15], ["created_at", "2021-10-26 02:28:31.345602"], ["updated_at", "2021-10-26 02:28:31.345602"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 15], ["created_at", "2021-10-26 02:28:31.348047"], ["updated_at", "2021-10-26 02:28:31.348047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 15], ["created_at", "2021-10-26 02:28:31.349242"], ["updated_at", "2021-10-26 02:28:31.349242"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:28:31.366338"], ["updated_at", "2021-10-26 02:28:31.366338"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 43], ["application_id", 15], ["created_at", "2021-10-26 02:28:31.383703"], ["updated_at", "2021-10-26 02:28:31.383703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 44], ["application_id", 15], ["created_at", "2021-10-26 02:28:31.385542"], ["updated_at", "2021-10-26 02:28:31.385542"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/15” for 127.0.0.1 at 2021-10-25 20:28:31 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"15"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 15], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 15], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.5ms)

Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.6ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:28:31.441792"], ["updated_at", "2021-10-26 02:28:31.441792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 16], ["created_at", "2021-10-26 02:28:31.443310"], ["updated_at", "2021-10-26 02:28:31.443310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 16], ["created_at", "2021-10-26 02:28:31.444500"], ["updated_at", "2021-10-26 02:28:31.444500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 16], ["created_at", "2021-10-26 02:28:31.446122"], ["updated_at", "2021-10-26 02:28:31.446122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:28:31.447088"], ["updated_at", "2021-10-26 02:28:31.447088"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/16” for 127.0.0.1 at 2021-10-25 20:28:31 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"16"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 16], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 16], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.4ms)

Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.6ms)

 (0.1ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:32:48.754745"], ["updated_at", "2021-10-26 02:32:48.754745"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 17], ["created_at", "2021-10-26 02:32:48.783971"], ["updated_at", "2021-10-26 02:32:48.783971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 17], ["created_at", "2021-10-26 02:32:48.786432"], ["updated_at", "2021-10-26 02:32:48.786432"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 17], ["created_at", "2021-10-26 02:32:48.787635"], ["updated_at", "2021-10-26 02:32:48.787635"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:32:48.803320"], ["updated_at", "2021-10-26 02:32:48.803320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 49], ["application_id", 17], ["created_at", "2021-10-26 02:32:48.820236"], ["updated_at", "2021-10-26 02:32:48.820236"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 50], ["application_id", 17], ["created_at", "2021-10-26 02:32:48.821916"], ["updated_at", "2021-10-26 02:32:48.821916"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/17” for 127.0.0.1 at 2021-10-25 20:32:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"17"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (76378.0ms)

Completed 500 Internal Server Error in 76388ms (ActiveRecord: 0.6ms)

 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:34:09.178872"], ["updated_at", "2021-10-26 02:34:09.178872"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 18], ["created_at", "2021-10-26 02:34:09.212218"], ["updated_at", "2021-10-26 02:34:09.212218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 18], ["created_at", "2021-10-26 02:34:09.214503"], ["updated_at", "2021-10-26 02:34:09.214503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 18], ["created_at", "2021-10-26 02:34:09.215679"], ["updated_at", "2021-10-26 02:34:09.215679"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:34:09.232369"], ["updated_at", "2021-10-26 02:34:09.232369"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 52], ["application_id", 18], ["created_at", "2021-10-26 02:34:09.249830"], ["updated_at", "2021-10-26 02:34:09.249830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 53], ["application_id", 18], ["created_at", "2021-10-26 02:34:09.252229"], ["updated_at", "2021-10-26 02:34:09.252229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/18” for 127.0.0.1 at 2021-10-25 20:34:09 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"18"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 18], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 18], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (85598.4ms)

Completed 500 Internal Server Error in 85608ms (ActiveRecord: 0.6ms)

 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:37:34.816360"], ["updated_at", "2021-10-26 02:37:34.816360"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 19], ["created_at", "2021-10-26 02:37:34.849068"], ["updated_at", "2021-10-26 02:37:34.849068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 19], ["created_at", "2021-10-26 02:37:34.851445"], ["updated_at", "2021-10-26 02:37:34.851445"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 19], ["created_at", "2021-10-26 02:37:34.852633"], ["updated_at", "2021-10-26 02:37:34.852633"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:37:34.870006"], ["updated_at", "2021-10-26 02:37:34.870006"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 55], ["application_id", 19], ["created_at", "2021-10-26 02:37:34.887768"], ["updated_at", "2021-10-26 02:37:34.887768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 56], ["application_id", 19], ["created_at", "2021-10-26 02:37:34.889714"], ["updated_at", "2021-10-26 02:37:34.889714"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/19” for 127.0.0.1 at 2021-10-25 20:37:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"19"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 19], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 19], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.5ms)

Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.5ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:37:34.946158"], ["updated_at", "2021-10-26 02:37:34.946158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 20], ["created_at", "2021-10-26 02:37:34.947537"], ["updated_at", "2021-10-26 02:37:34.947537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 20], ["created_at", "2021-10-26 02:37:34.948939"], ["updated_at", "2021-10-26 02:37:34.948939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 20], ["created_at", "2021-10-26 02:37:34.950293"], ["updated_at", "2021-10-26 02:37:34.950293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:37:34.951264"], ["updated_at", "2021-10-26 02:37:34.951264"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/20” for 127.0.0.1 at 2021-10-25 20:37:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"20"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 20], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 20], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.4ms)

Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.6ms)

 (0.1ms)  ROLLBACK
 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:38:23.437627"], ["updated_at", "2021-10-26 02:38:23.437627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 21], ["created_at", "2021-10-26 02:38:23.477515"], ["updated_at", "2021-10-26 02:38:23.477515"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 21], ["created_at", "2021-10-26 02:38:23.480429"], ["updated_at", "2021-10-26 02:38:23.480429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 21], ["created_at", "2021-10-26 02:38:23.482972"], ["updated_at", "2021-10-26 02:38:23.482972"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:38:23.509818"], ["updated_at", "2021-10-26 02:38:23.509818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (2.0ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 61], ["application_id", 21], ["created_at", "2021-10-26 02:38:23.527642"], ["updated_at", "2021-10-26 02:38:23.527642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 62], ["application_id", 21], ["created_at", "2021-10-26 02:38:23.530792"], ["updated_at", "2021-10-26 02:38:23.530792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/21” for 127.0.0.1 at 2021-10-25 20:38:23 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"21"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (3.5ms)

Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.8ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:38:23.590083"], ["updated_at", "2021-10-26 02:38:23.590083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 22], ["created_at", "2021-10-26 02:38:23.591672"], ["updated_at", "2021-10-26 02:38:23.591672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 22], ["created_at", "2021-10-26 02:38:23.593183"], ["updated_at", "2021-10-26 02:38:23.593183"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 22], ["created_at", "2021-10-26 02:38:23.594278"], ["updated_at", "2021-10-26 02:38:23.594278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:38:23.595261"], ["updated_at", "2021-10-26 02:38:23.595261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/22” for 127.0.0.1 at 2021-10-25 20:38:23 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"22"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 22], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 22], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (1.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:39:19.108218"], ["updated_at", "2021-10-26 02:39:19.108218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 23], ["created_at", "2021-10-26 02:39:19.140854"], ["updated_at", "2021-10-26 02:39:19.140854"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 23], ["created_at", "2021-10-26 02:39:19.142738"], ["updated_at", "2021-10-26 02:39:19.142738"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 23], ["created_at", "2021-10-26 02:39:19.144103"], ["updated_at", "2021-10-26 02:39:19.144103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:39:19.160856"], ["updated_at", "2021-10-26 02:39:19.160856"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 67], ["application_id", 23], ["created_at", "2021-10-26 02:39:19.173078"], ["updated_at", "2021-10-26 02:39:19.173078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 68], ["application_id", 23], ["created_at", "2021-10-26 02:39:19.175586"], ["updated_at", "2021-10-26 02:39:19.175586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/23” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"23"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 23)
Rendered applications/show.html.erb within layouts/application (9.1ms)

Completed 200 OK in 101ms (Views: 93.3ms | ActiveRecord: 2.3ms) Started GET “/pets/67” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"67"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.6ms) Started GET “/applications/23” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"23"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 23)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.4ms) Started GET “/pets/68” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"68"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.6ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:39:19.360630"], ["updated_at", "2021-10-26 02:39:19.360630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 24], ["created_at", "2021-10-26 02:39:19.362329"], ["updated_at", "2021-10-26 02:39:19.362329"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 24], ["created_at", "2021-10-26 02:39:19.363564"], ["updated_at", "2021-10-26 02:39:19.363564"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 24], ["created_at", "2021-10-26 02:39:19.364571"], ["updated_at", "2021-10-26 02:39:19.364571"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:39:19.365857"], ["updated_at", "2021-10-26 02:39:19.365857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/24” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"24"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 24], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 24], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 24)
Rendered applications/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.3ms) Started GET “/applications/24?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"24"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 24], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 24], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 24)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:32:32.161864"], ["updated_at", "2021-10-26 13:32:32.161864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 25], ["created_at", "2021-10-26 13:32:32.184454"], ["updated_at", "2021-10-26 13:32:32.184454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 25], ["created_at", "2021-10-26 13:32:32.187279"], ["updated_at", "2021-10-26 13:32:32.187279"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 25], ["created_at", "2021-10-26 13:32:32.188591"], ["updated_at", "2021-10-26 13:32:32.188591"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:32:32.189790"], ["updated_at", "2021-10-26 13:32:32.189790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 73], ["application_id", 25], ["created_at", "2021-10-26 13:32:32.204322"], ["updated_at", "2021-10-26 13:32:32.204322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 74], ["application_id", 25], ["created_at", "2021-10-26 13:32:32.206796"], ["updated_at", "2021-10-26 13:32:32.206796"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:33:03.250310"], ["updated_at", "2021-10-26 13:33:03.250310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 26], ["created_at", "2021-10-26 13:33:03.272176"], ["updated_at", "2021-10-26 13:33:03.272176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 26], ["created_at", "2021-10-26 13:33:03.274354"], ["updated_at", "2021-10-26 13:33:03.274354"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 26], ["created_at", "2021-10-26 13:33:03.275935"], ["updated_at", "2021-10-26 13:33:03.275935"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:33:03.277273"], ["updated_at", "2021-10-26 13:33:03.277273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 76], ["application_id", 26], ["created_at", "2021-10-26 13:33:03.291133"], ["updated_at", "2021-10-26 13:33:03.291133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 77], ["application_id", 26], ["created_at", "2021-10-26 13:33:03.293699"], ["updated_at", "2021-10-26 13:33:03.293699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 26)
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 26)
 (0.2ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:55:16.599860"], ["updated_at", "2021-10-26 13:55:16.599860"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 27], ["created_at", "2021-10-26 13:55:16.623321"], ["updated_at", "2021-10-26 13:55:16.623321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 27], ["created_at", "2021-10-26 13:55:16.626308"], ["updated_at", "2021-10-26 13:55:16.626308"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 27], ["created_at", "2021-10-26 13:55:16.627498"], ["updated_at", "2021-10-26 13:55:16.627498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:55:16.628553"], ["updated_at", "2021-10-26 13:55:16.628553"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 79], ["application_id", 27], ["created_at", "2021-10-26 13:55:16.642122"], ["updated_at", "2021-10-26 13:55:16.642122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 80], ["application_id", 27], ["created_at", "2021-10-26 13:55:16.644594"], ["updated_at", "2021-10-26 13:55:16.644594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 27)
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 27)
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:55:16.654071"], ["updated_at", "2021-10-26 13:55:16.654071"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 28], ["created_at", "2021-10-26 13:55:16.655447"], ["updated_at", "2021-10-26 13:55:16.655447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 28], ["created_at", "2021-10-26 13:55:16.656691"], ["updated_at", "2021-10-26 13:55:16.656691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 28], ["created_at", "2021-10-26 13:55:16.657903"], ["updated_at", "2021-10-26 13:55:16.657903"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:55:16.658986"], ["updated_at", "2021-10-26 13:55:16.658986"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 82], ["application_id", 28], ["created_at", "2021-10-26 13:55:16.660498"], ["updated_at", "2021-10-26 13:55:16.660498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 83], ["application_id", 28], ["created_at", "2021-10-26 13:55:16.661914"], ["updated_at", "2021-10-26 13:55:16.661914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 28], ["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:58:03.457458"], ["updated_at", "2021-10-26 13:58:03.457458"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 29], ["created_at", "2021-10-26 13:58:03.480055"], ["updated_at", "2021-10-26 13:58:03.480055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 29], ["created_at", "2021-10-26 13:58:03.482756"], ["updated_at", "2021-10-26 13:58:03.482756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 29], ["created_at", "2021-10-26 13:58:03.483949"], ["updated_at", "2021-10-26 13:58:03.483949"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:58:03.484967"], ["updated_at", "2021-10-26 13:58:03.484967"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 85], ["application_id", 29], ["created_at", "2021-10-26 13:58:03.498832"], ["updated_at", "2021-10-26 13:58:03.498832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 86], ["application_id", 29], ["created_at", "2021-10-26 13:58:03.501665"], ["updated_at", "2021-10-26 13:58:03.501665"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 29)
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 29)
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:58:03.511892"], ["updated_at", "2021-10-26 13:58:03.511892"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 30], ["created_at", "2021-10-26 13:58:03.513234"], ["updated_at", "2021-10-26 13:58:03.513234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 30], ["created_at", "2021-10-26 13:58:03.514543"], ["updated_at", "2021-10-26 13:58:03.514543"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 30], ["created_at", "2021-10-26 13:58:03.515962"], ["updated_at", "2021-10-26 13:58:03.515962"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:58:03.517064"], ["updated_at", "2021-10-26 13:58:03.517064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 88], ["application_id", 30], ["created_at", "2021-10-26 13:58:03.518592"], ["updated_at", "2021-10-26 13:58:03.518592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 89], ["application_id", 30], ["created_at", "2021-10-26 13:58:03.520105"], ["updated_at", "2021-10-26 13:58:03.520105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 30], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:06:07.334095"], ["updated_at", "2021-10-26 14:06:07.334095"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 31], ["created_at", "2021-10-26 14:06:07.357195"], ["updated_at", "2021-10-26 14:06:07.357195"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 31], ["created_at", "2021-10-26 14:06:07.359502"], ["updated_at", "2021-10-26 14:06:07.359502"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 31], ["created_at", "2021-10-26 14:06:07.361277"], ["updated_at", "2021-10-26 14:06:07.361277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:06:07.362475"], ["updated_at", "2021-10-26 14:06:07.362475"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 91], ["application_id", 31], ["created_at", "2021-10-26 14:06:07.376927"], ["updated_at", "2021-10-26 14:06:07.376927"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.1ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 92], ["application_id", 31], ["created_at", "2021-10-26 14:06:07.379673"], ["updated_at", "2021-10-26 14:06:07.379673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 31)
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 31)
 (0.2ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:06:07.390107"], ["updated_at", "2021-10-26 14:06:07.390107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 32], ["created_at", "2021-10-26 14:06:07.391510"], ["updated_at", "2021-10-26 14:06:07.391510"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 32], ["created_at", "2021-10-26 14:06:07.393087"], ["updated_at", "2021-10-26 14:06:07.393087"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 32], ["created_at", "2021-10-26 14:06:07.394830"], ["updated_at", "2021-10-26 14:06:07.394830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:06:07.396207"], ["updated_at", "2021-10-26 14:06:07.396207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 94], ["application_id", 32], ["created_at", "2021-10-26 14:06:07.397865"], ["updated_at", "2021-10-26 14:06:07.397865"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 95], ["application_id", 32], ["created_at", "2021-10-26 14:06:07.399174"], ["updated_at", "2021-10-26 14:06:07.399174"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:06:07.402957"], ["updated_at", "2021-10-26 14:06:07.402957"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 33], ["created_at", "2021-10-26 14:06:07.404218"], ["updated_at", "2021-10-26 14:06:07.404218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 33], ["created_at", "2021-10-26 14:06:07.405451"], ["updated_at", "2021-10-26 14:06:07.405451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 33], ["created_at", "2021-10-26 14:06:07.406803"], ["updated_at", "2021-10-26 14:06:07.406803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:06:07.407794"], ["updated_at", "2021-10-26 14:06:07.407794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 97], ["application_id", 33], ["created_at", "2021-10-26 14:06:07.409244"], ["updated_at", "2021-10-26 14:06:07.409244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 98], ["application_id", 33], ["created_at", "2021-10-26 14:06:07.410557"], ["updated_at", "2021-10-26 14:06:07.410557"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Pet Load (1.6ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
 (0.2ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:07:54.824904"], ["updated_at", "2021-10-26 14:07:54.824904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 34], ["created_at", "2021-10-26 14:07:54.846956"], ["updated_at", "2021-10-26 14:07:54.846956"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 34], ["created_at", "2021-10-26 14:07:54.849368"], ["updated_at", "2021-10-26 14:07:54.849368"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 34], ["created_at", "2021-10-26 14:07:54.850605"], ["updated_at", "2021-10-26 14:07:54.850605"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:07:54.851836"], ["updated_at", "2021-10-26 14:07:54.851836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (2.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 100], ["application_id", 34], ["created_at", "2021-10-26 14:07:54.865828"], ["updated_at", "2021-10-26 14:07:54.865828"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 101], ["application_id", 34], ["created_at", "2021-10-26 14:07:54.869176"], ["updated_at", "2021-10-26 14:07:54.869176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (2.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 34)
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 34)
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:07:54.879243"], ["updated_at", "2021-10-26 14:07:54.879243"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 35], ["created_at", "2021-10-26 14:07:54.881125"], ["updated_at", "2021-10-26 14:07:54.881125"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 35], ["created_at", "2021-10-26 14:07:54.882695"], ["updated_at", "2021-10-26 14:07:54.882695"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 35], ["created_at", "2021-10-26 14:07:54.884044"], ["updated_at", "2021-10-26 14:07:54.884044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:07:54.885425"], ["updated_at", "2021-10-26 14:07:54.885425"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 103], ["application_id", 35], ["created_at", "2021-10-26 14:07:54.887132"], ["updated_at", "2021-10-26 14:07:54.887132"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 104], ["application_id", 35], ["created_at", "2021-10-26 14:07:54.888477"], ["updated_at", "2021-10-26 14:07:54.888477"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:07:54.893426"], ["updated_at", "2021-10-26 14:07:54.893426"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 36], ["created_at", "2021-10-26 14:07:54.895342"], ["updated_at", "2021-10-26 14:07:54.895342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 36], ["created_at", "2021-10-26 14:07:54.896709"], ["updated_at", "2021-10-26 14:07:54.896709"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 36], ["created_at", "2021-10-26 14:07:54.898062"], ["updated_at", "2021-10-26 14:07:54.898062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:07:54.899197"], ["updated_at", "2021-10-26 14:07:54.899197"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 106], ["application_id", 36], ["created_at", "2021-10-26 14:07:54.900846"], ["updated_at", "2021-10-26 14:07:54.900846"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 107], ["application_id", 36], ["created_at", "2021-10-26 14:07:54.902433"], ["updated_at", "2021-10-26 14:07:54.902433"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Pet Load (0.7ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.7ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
 (0.2ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:10:01.429353"], ["updated_at", "2021-10-26 14:10:01.429353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 37], ["created_at", "2021-10-26 14:10:01.453225"], ["updated_at", "2021-10-26 14:10:01.453225"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 37], ["created_at", "2021-10-26 14:10:01.455654"], ["updated_at", "2021-10-26 14:10:01.455654"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 37], ["created_at", "2021-10-26 14:10:01.456976"], ["updated_at", "2021-10-26 14:10:01.456976"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:10:01.458240"], ["updated_at", "2021-10-26 14:10:01.458240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 109], ["application_id", 37], ["created_at", "2021-10-26 14:10:01.473161"], ["updated_at", "2021-10-26 14:10:01.473161"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 110], ["application_id", 37], ["created_at", "2021-10-26 14:10:01.475592"], ["updated_at", "2021-10-26 14:10:01.475592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 37)
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 37)
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:10:01.485183"], ["updated_at", "2021-10-26 14:10:01.485183"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 38], ["created_at", "2021-10-26 14:10:01.486663"], ["updated_at", "2021-10-26 14:10:01.486663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 38], ["created_at", "2021-10-26 14:10:01.488143"], ["updated_at", "2021-10-26 14:10:01.488143"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 38], ["created_at", "2021-10-26 14:10:01.489392"], ["updated_at", "2021-10-26 14:10:01.489392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:10:01.490518"], ["updated_at", "2021-10-26 14:10:01.490518"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 112], ["application_id", 38], ["created_at", "2021-10-26 14:10:01.492286"], ["updated_at", "2021-10-26 14:10:01.492286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 113], ["application_id", 38], ["created_at", "2021-10-26 14:10:01.494222"], ["updated_at", "2021-10-26 14:10:01.494222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:10:01.498115"], ["updated_at", "2021-10-26 14:10:01.498115"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 39], ["created_at", "2021-10-26 14:10:01.499607"], ["updated_at", "2021-10-26 14:10:01.499607"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 39], ["created_at", "2021-10-26 14:10:01.500921"], ["updated_at", "2021-10-26 14:10:01.500921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 39], ["created_at", "2021-10-26 14:10:01.502299"], ["updated_at", "2021-10-26 14:10:01.502299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:10:01.503319"], ["updated_at", "2021-10-26 14:10:01.503319"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 115], ["application_id", 39], ["created_at", "2021-10-26 14:10:01.504964"], ["updated_at", "2021-10-26 14:10:01.504964"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 116], ["application_id", 39], ["created_at", "2021-10-26 14:10:01.506584"], ["updated_at", "2021-10-26 14:10:01.506584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Pet Load (0.7ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1  [["LIMIT", 11]]
 (0.2ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:15:29.170159"], ["updated_at", "2021-10-26 14:15:29.170159"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 40], ["created_at", "2021-10-26 14:15:29.192166"], ["updated_at", "2021-10-26 14:15:29.192166"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 40], ["created_at", "2021-10-26 14:15:29.194692"], ["updated_at", "2021-10-26 14:15:29.194692"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 40], ["created_at", "2021-10-26 14:15:29.196021"], ["updated_at", "2021-10-26 14:15:29.196021"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:15:29.197366"], ["updated_at", "2021-10-26 14:15:29.197366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 118], ["application_id", 40], ["created_at", "2021-10-26 14:15:29.212003"], ["updated_at", "2021-10-26 14:15:29.212003"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 119], ["application_id", 40], ["created_at", "2021-10-26 14:15:29.215066"], ["updated_at", "2021-10-26 14:15:29.215066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:15:29.224696"], ["updated_at", "2021-10-26 14:15:29.224696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 41], ["created_at", "2021-10-26 14:15:29.226140"], ["updated_at", "2021-10-26 14:15:29.226140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 41], ["created_at", "2021-10-26 14:15:29.227508"], ["updated_at", "2021-10-26 14:15:29.227508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 41], ["created_at", "2021-10-26 14:15:29.228836"], ["updated_at", "2021-10-26 14:15:29.228836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:15:29.230143"], ["updated_at", "2021-10-26 14:15:29.230143"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 121], ["application_id", 41], ["created_at", "2021-10-26 14:15:29.231917"], ["updated_at", "2021-10-26 14:15:29.231917"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 122], ["application_id", 41], ["created_at", "2021-10-26 14:15:29.233286"], ["updated_at", "2021-10-26 14:15:29.233286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:15:29.237180"], ["updated_at", "2021-10-26 14:15:29.237180"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 42], ["created_at", "2021-10-26 14:15:29.238967"], ["updated_at", "2021-10-26 14:15:29.238967"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 42], ["created_at", "2021-10-26 14:15:29.240992"], ["updated_at", "2021-10-26 14:15:29.240992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 42], ["created_at", "2021-10-26 14:15:29.242354"], ["updated_at", "2021-10-26 14:15:29.242354"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:15:29.243503"], ["updated_at", "2021-10-26 14:15:29.243503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 124], ["application_id", 42], ["created_at", "2021-10-26 14:15:29.245215"], ["updated_at", "2021-10-26 14:15:29.245215"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 125], ["application_id", 42], ["created_at", "2021-10-26 14:15:29.246847"], ["updated_at", "2021-10-26 14:15:29.246847"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK
 (1.8ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:32:57.549917"], ["updated_at", "2021-10-26 19:32:57.549917"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 43], ["created_at", "2021-10-26 19:32:57.582769"], ["updated_at", "2021-10-26 19:32:57.582769"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 43], ["created_at", "2021-10-26 19:32:57.585464"], ["updated_at", "2021-10-26 19:32:57.585464"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 43], ["created_at", "2021-10-26 19:32:57.586756"], ["updated_at", "2021-10-26 19:32:57.586756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (1.1ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:32:57.603821"], ["updated_at", "2021-10-26 19:32:57.603821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 127], ["application_id", 43], ["created_at", "2021-10-26 19:32:57.621942"], ["updated_at", "2021-10-26 19:32:57.621942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 128], ["application_id", 43], ["created_at", "2021-10-26 19:32:57.623944"], ["updated_at", "2021-10-26 19:32:57.623944"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/43” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"43"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
Rendered applications/show.html.erb within layouts/application (8.6ms)

Completed 200 OK in 106ms (Views: 97.8ms | ActiveRecord: 2.5ms) Started GET “/pets/127” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"127"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/43” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"43"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.2ms) Started GET “/pets/128” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"128"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 128], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:32:57.819114"], ["updated_at", "2021-10-26 19:32:57.819114"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 44], ["created_at", "2021-10-26 19:32:57.820541"], ["updated_at", "2021-10-26 19:32:57.820541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 44], ["created_at", "2021-10-26 19:32:57.821776"], ["updated_at", "2021-10-26 19:32:57.821776"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 44], ["created_at", "2021-10-26 19:32:57.823506"], ["updated_at", "2021-10-26 19:32:57.823506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:32:57.824859"], ["updated_at", "2021-10-26 19:32:57.824859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/44” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"44"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.9ms) Started GET “/applications/44?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"44"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.7ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.7ms)

 (0.2ms)  ROLLBACK
 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:38:26.947389"], ["updated_at", "2021-10-26 19:38:26.947389"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 45], ["created_at", "2021-10-26 19:38:26.983120"], ["updated_at", "2021-10-26 19:38:26.983120"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 45], ["created_at", "2021-10-26 19:38:26.986061"], ["updated_at", "2021-10-26 19:38:26.986061"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 45], ["created_at", "2021-10-26 19:38:26.987340"], ["updated_at", "2021-10-26 19:38:26.987340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:38:27.004648"], ["updated_at", "2021-10-26 19:38:27.004648"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 133], ["application_id", 45], ["created_at", "2021-10-26 19:38:27.021952"], ["updated_at", "2021-10-26 19:38:27.021952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 134], ["application_id", 45], ["created_at", "2021-10-26 19:38:27.024531"], ["updated_at", "2021-10-26 19:38:27.024531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/45” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"45"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 45)
Rendered applications/show.html.erb within layouts/application (8.3ms)

Completed 200 OK in 97ms (Views: 88.5ms | ActiveRecord: 2.2ms) Started GET “/pets/133” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"133"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 133], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/45” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"45"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.3ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 45)
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.7ms) Started GET “/pets/134” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"134"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 134], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:38:27.214449"], ["updated_at", "2021-10-26 19:38:27.214449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 46], ["created_at", "2021-10-26 19:38:27.215939"], ["updated_at", "2021-10-26 19:38:27.215939"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 46], ["created_at", "2021-10-26 19:38:27.217703"], ["updated_at", "2021-10-26 19:38:27.217703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 46], ["created_at", "2021-10-26 19:38:27.219145"], ["updated_at", "2021-10-26 19:38:27.219145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:38:27.220148"], ["updated_at", "2021-10-26 19:38:27.220148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/46” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"46"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 46)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.9ms) Started GET “/applications/46?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"46"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 46)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.8ms)

Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 1.7ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:02.436257"], ["updated_at", "2021-10-26 19:40:02.436257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 47], ["created_at", "2021-10-26 19:40:02.467936"], ["updated_at", "2021-10-26 19:40:02.467936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 47], ["created_at", "2021-10-26 19:40:02.470728"], ["updated_at", "2021-10-26 19:40:02.470728"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 47], ["created_at", "2021-10-26 19:40:02.472089"], ["updated_at", "2021-10-26 19:40:02.472089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:02.488631"], ["updated_at", "2021-10-26 19:40:02.488631"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 139], ["application_id", 47], ["created_at", "2021-10-26 19:40:02.505850"], ["updated_at", "2021-10-26 19:40:02.505850"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 140], ["application_id", 47], ["created_at", "2021-10-26 19:40:02.508422"], ["updated_at", "2021-10-26 19:40:02.508422"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/47” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"47"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)
Rendered applications/show.html.erb within layouts/application (7.8ms)

Completed 200 OK in 92ms (Views: 84.0ms | ActiveRecord: 2.1ms) Started GET “/pets/139” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"139"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 139], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/47” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"47"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)
Rendered applications/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.5ms) Started GET “/pets/140” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"140"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 140], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.6ms)

 (0.6ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:02.678093"], ["updated_at", "2021-10-26 19:40:02.678093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 48], ["created_at", "2021-10-26 19:40:02.679524"], ["updated_at", "2021-10-26 19:40:02.679524"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 48], ["created_at", "2021-10-26 19:40:02.680676"], ["updated_at", "2021-10-26 19:40:02.680676"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 48], ["created_at", "2021-10-26 19:40:02.681772"], ["updated_at", "2021-10-26 19:40:02.681772"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (1.0ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:02.683190"], ["updated_at", "2021-10-26 19:40:02.683190"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/48” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"48"}
Application Load (1.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 2.3ms) Started GET “/applications/48?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"48"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.9ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 2.1ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:02.713028"], ["updated_at", "2021-10-26 19:40:02.713028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 49], ["created_at", "2021-10-26 19:40:02.715939"], ["updated_at", "2021-10-26 19:40:02.715939"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:02.718857"], ["updated_at", "2021-10-26 19:40:02.718857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/49” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"49"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)
Rendered applications/show.html.erb within layouts/application (2.1ms)

Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 1.3ms) Started GET “/applications/49?utf8=%E2%9C%93&search=bella&commit=Search” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"bella", "commit"=>"Search", "id"=>"49"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%bella%')
Rendered applications/show.html.erb within layouts/application (2.0ms)

Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 1.3ms)

 (0.1ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:34.201874"], ["updated_at", "2021-10-26 19:40:34.201874"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 50], ["created_at", "2021-10-26 19:40:34.241089"], ["updated_at", "2021-10-26 19:40:34.241089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 50], ["created_at", "2021-10-26 19:40:34.244421"], ["updated_at", "2021-10-26 19:40:34.244421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 50], ["created_at", "2021-10-26 19:40:34.246487"], ["updated_at", "2021-10-26 19:40:34.246487"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:34.274243"], ["updated_at", "2021-10-26 19:40:34.274243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 146], ["application_id", 50], ["created_at", "2021-10-26 19:40:34.292688"], ["updated_at", "2021-10-26 19:40:34.292688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 147], ["application_id", 50], ["created_at", "2021-10-26 19:40:34.295787"], ["updated_at", "2021-10-26 19:40:34.295787"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/50” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"50"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (3.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)
Rendered applications/show.html.erb within layouts/application (9.0ms)

Completed 200 OK in 92ms (Views: 82.6ms | ActiveRecord: 3.9ms) Started GET “/pets/146” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"146"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 146], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/50” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"50"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.1ms) Started GET “/pets/147” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"147"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:34.450867"], ["updated_at", "2021-10-26 19:40:34.450867"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 51], ["created_at", "2021-10-26 19:40:34.452672"], ["updated_at", "2021-10-26 19:40:34.452672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 51], ["created_at", "2021-10-26 19:40:34.453865"], ["updated_at", "2021-10-26 19:40:34.453865"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 51], ["created_at", "2021-10-26 19:40:34.454890"], ["updated_at", "2021-10-26 19:40:34.454890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:34.455877"], ["updated_at", "2021-10-26 19:40:34.455877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/51” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"51"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 51)
Rendered applications/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.0ms) Started GET “/applications/51?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"51"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 51)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.3ms)

Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 1.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:34.475976"], ["updated_at", "2021-10-26 19:40:34.475976"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 52], ["created_at", "2021-10-26 19:40:34.477429"], ["updated_at", "2021-10-26 19:40:34.477429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:34.478510"], ["updated_at", "2021-10-26 19:40:34.478510"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/52” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"52"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.0ms) Started GET “/applications/52?utf8=%E2%9C%93&search=bella&commit=Search” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"bella", "commit"=>"Search", "id"=>"52"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%bella%')
Rendered applications/show.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.5ms)

 (0.5ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:43:56.043897"], ["updated_at", "2021-10-26 19:43:56.043897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 53], ["created_at", "2021-10-26 19:43:56.077208"], ["updated_at", "2021-10-26 19:43:56.077208"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 53], ["created_at", "2021-10-26 19:43:56.079755"], ["updated_at", "2021-10-26 19:43:56.079755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 53], ["created_at", "2021-10-26 19:43:56.081124"], ["updated_at", "2021-10-26 19:43:56.081124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:43:56.098181"], ["updated_at", "2021-10-26 19:43:56.098181"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 153], ["application_id", 53], ["created_at", "2021-10-26 19:43:56.114658"], ["updated_at", "2021-10-26 19:43:56.114658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 154], ["application_id", 53], ["created_at", "2021-10-26 19:43:56.116379"], ["updated_at", "2021-10-26 19:43:56.116379"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/53” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"53"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)
Rendered applications/show.html.erb within layouts/application (8.8ms)

Completed 200 OK in 100ms (Views: 91.3ms | ActiveRecord: 2.7ms) Started GET “/pets/153” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"153"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 153], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.6ms) Started GET “/applications/53” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"53"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.8ms) Started GET “/pets/154” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"154"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 154], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:43:56.301344"], ["updated_at", "2021-10-26 19:43:56.301344"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 54], ["created_at", "2021-10-26 19:43:56.302961"], ["updated_at", "2021-10-26 19:43:56.302961"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 54], ["created_at", "2021-10-26 19:43:56.304063"], ["updated_at", "2021-10-26 19:43:56.304063"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 54], ["created_at", "2021-10-26 19:43:56.305413"], ["updated_at", "2021-10-26 19:43:56.305413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:43:56.306617"], ["updated_at", "2021-10-26 19:43:56.306617"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/54” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"54"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.4ms) Started GET “/applications/54?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"54"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.0ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 2.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:43:56.335500"], ["updated_at", "2021-10-26 19:43:56.335500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 55], ["created_at", "2021-10-26 19:43:56.337546"], ["updated_at", "2021-10-26 19:43:56.337546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:43:56.339347"], ["updated_at", "2021-10-26 19:43:56.339347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/55” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"55"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 1.0ms) Started GET “/applications/55?utf8=%E2%9C%93&search=bella&commit=Search” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"bella", "commit"=>"Search", "id"=>"55"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%bella%')
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 1.2ms)

 (0.3ms)  ROLLBACK
 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (1.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:44:27.596424"], ["updated_at", "2021-10-26 19:44:27.596424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 56], ["created_at", "2021-10-26 19:44:27.636956"], ["updated_at", "2021-10-26 19:44:27.636956"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 56], ["created_at", "2021-10-26 19:44:27.640386"], ["updated_at", "2021-10-26 19:44:27.640386"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 56], ["created_at", "2021-10-26 19:44:27.642334"], ["updated_at", "2021-10-26 19:44:27.642334"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Create (1.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:44:27.672219"], ["updated_at", "2021-10-26 19:44:27.672219"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 160], ["application_id", 56], ["created_at", "2021-10-26 19:44:27.698752"], ["updated_at", "2021-10-26 19:44:27.698752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 161], ["application_id", 56], ["created_at", "2021-10-26 19:44:27.701700"], ["updated_at", "2021-10-26 19:44:27.701700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/56” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"56"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
Rendered applications/show.html.erb within layouts/application (7.7ms)

Completed 200 OK in 89ms (Views: 80.8ms | ActiveRecord: 2.5ms) Started GET “/pets/160” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"160"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 160], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/56” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"56"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
Rendered applications/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.4ms) Started GET “/pets/161” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"161"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 161], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:44:27.851193"], ["updated_at", "2021-10-26 19:44:27.851193"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 57], ["created_at", "2021-10-26 19:44:27.852773"], ["updated_at", "2021-10-26 19:44:27.852773"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 57], ["created_at", "2021-10-26 19:44:27.854139"], ["updated_at", "2021-10-26 19:44:27.854139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 57], ["created_at", "2021-10-26 19:44:27.855530"], ["updated_at", "2021-10-26 19:44:27.855530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:44:27.856810"], ["updated_at", "2021-10-26 19:44:27.856810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/57” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"57"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)
Rendered applications/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.6ms) Started GET “/applications/57?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"57"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.8ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:44:27.878790"], ["updated_at", "2021-10-26 19:44:27.878790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 58], ["created_at", "2021-10-26 19:44:27.880383"], ["updated_at", "2021-10-26 19:44:27.880383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:44:27.881519"], ["updated_at", "2021-10-26 19:44:27.881519"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/58” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"58"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.0ms) Started GET “/applications/58?utf8=%E2%9C%93&search=bella&commit=Search” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"bella", "commit"=>"Search", "id"=>"58"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%bella%')
Rendered applications/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.2ms)

 (0.3ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (1.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:14.395536"], ["updated_at", "2021-10-26 19:45:14.395536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 59], ["created_at", "2021-10-26 19:45:14.436998"], ["updated_at", "2021-10-26 19:45:14.436998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 59], ["created_at", "2021-10-26 19:45:14.440601"], ["updated_at", "2021-10-26 19:45:14.440601"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 59], ["created_at", "2021-10-26 19:45:14.442562"], ["updated_at", "2021-10-26 19:45:14.442562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:14.472539"], ["updated_at", "2021-10-26 19:45:14.472539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 167], ["application_id", 59], ["created_at", "2021-10-26 19:45:14.491276"], ["updated_at", "2021-10-26 19:45:14.491276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 168], ["application_id", 59], ["created_at", "2021-10-26 19:45:14.493757"], ["updated_at", "2021-10-26 19:45:14.493757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/59” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"59"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.3ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)
Rendered applications/show.html.erb within layouts/application (8.2ms)

Completed 200 OK in 94ms (Views: 85.2ms | ActiveRecord: 3.0ms) Started GET “/pets/167” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"167"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 167], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.6ms) Started GET “/applications/59” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"59"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.0ms) Started GET “/pets/168” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"168"}
Pet Load (0.6ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 168], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.8ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:14.647959"], ["updated_at", "2021-10-26 19:45:14.647959"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 60], ["created_at", "2021-10-26 19:45:14.649551"], ["updated_at", "2021-10-26 19:45:14.649551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 60], ["created_at", "2021-10-26 19:45:14.650873"], ["updated_at", "2021-10-26 19:45:14.650873"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 60], ["created_at", "2021-10-26 19:45:14.652104"], ["updated_at", "2021-10-26 19:45:14.652104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:14.653351"], ["updated_at", "2021-10-26 19:45:14.653351"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/60” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"60"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.6ms) Started GET “/applications/60?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"60"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.3ms)

Completed 200 OK in 5ms (Views: 1.7ms | ActiveRecord: 2.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:14.675579"], ["updated_at", "2021-10-26 19:45:14.675579"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 61], ["created_at", "2021-10-26 19:45:14.676982"], ["updated_at", "2021-10-26 19:45:14.676982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:14.678012"], ["updated_at", "2021-10-26 19:45:14.678012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/61” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"61"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.5ms) Started GET “/applications/61?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"61"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.2ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.5ms)

Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 2.0ms) Started POST “/application_pets?app_id=61&pet_id=173” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"61", "pet_id"=>"173"}
Application Load (0.6ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 173], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 173], ["application_id", 61], ["created_at", "2021-10-26 19:45:27.236517"], ["updated_at", "2021-10-26 19:45:27.236517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/61 Completed 302 Found in 12543ms (ActiveRecord: 2.2ms) Started GET “/applications/61” for 127.0.0.1 at 2021-10-26 13:45:27 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"61"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)
Rendered applications/show.html.erb within layouts/application (3.1ms)

Completed 200 OK in 7ms (Views: 3.8ms | ActiveRecord: 1.6ms)

 (0.5ms)  ROLLBACK
 (1.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:49.392124"], ["updated_at", "2021-10-26 19:45:49.392124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 62], ["created_at", "2021-10-26 19:45:49.423673"], ["updated_at", "2021-10-26 19:45:49.423673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 62], ["created_at", "2021-10-26 19:45:49.426147"], ["updated_at", "2021-10-26 19:45:49.426147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 62], ["created_at", "2021-10-26 19:45:49.427486"], ["updated_at", "2021-10-26 19:45:49.427486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:49.441870"], ["updated_at", "2021-10-26 19:45:49.441870"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 174], ["application_id", 62], ["created_at", "2021-10-26 19:45:49.461383"], ["updated_at", "2021-10-26 19:45:49.461383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 175], ["application_id", 62], ["created_at", "2021-10-26 19:45:49.464007"], ["updated_at", "2021-10-26 19:45:49.464007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/62” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"62"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.2ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 62)
Rendered applications/show.html.erb within layouts/application (8.2ms)

Completed 200 OK in 94ms (Views: 85.4ms | ActiveRecord: 2.9ms) Started GET “/pets/174” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"174"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 174], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/62” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"62"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 62)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.1ms) Started GET “/pets/175” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"175"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 175], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:49.637883"], ["updated_at", "2021-10-26 19:45:49.637883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 63], ["created_at", "2021-10-26 19:45:49.639592"], ["updated_at", "2021-10-26 19:45:49.639592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 63], ["created_at", "2021-10-26 19:45:49.641124"], ["updated_at", "2021-10-26 19:45:49.641124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 63], ["created_at", "2021-10-26 19:45:49.642498"], ["updated_at", "2021-10-26 19:45:49.642498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:49.643928"], ["updated_at", "2021-10-26 19:45:49.643928"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/63” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"63"}
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 63)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 1.8ms) Started GET “/applications/63?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"63"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 63)
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.9ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 2.0ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:49.674150"], ["updated_at", "2021-10-26 19:45:49.674150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 64], ["created_at", "2021-10-26 19:45:49.676510"], ["updated_at", "2021-10-26 19:45:49.676510"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:49.678069"], ["updated_at", "2021-10-26 19:45:49.678069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/64” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"64"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 64)
Rendered applications/show.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 1.2ms) Started GET “/applications/64?utf8=%E2%9C%93&search=bella&commit=Search” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"bella", "commit"=>"Search", "id"=>"64"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 64)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%bella%')
Rendered applications/show.html.erb within layouts/application (3.1ms)

Completed 200 OK in 6ms (Views: 2.7ms | ActiveRecord: 1.9ms)

 (0.2ms)  ROLLBACK
 (2.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:45:30.992165"], ["updated_at", "2021-10-26 20:45:30.992165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 65], ["created_at", "2021-10-26 20:45:31.025065"], ["updated_at", "2021-10-26 20:45:31.025065"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 65], ["created_at", "2021-10-26 20:45:31.027474"], ["updated_at", "2021-10-26 20:45:31.027474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 65], ["created_at", "2021-10-26 20:45:31.028753"], ["updated_at", "2021-10-26 20:45:31.028753"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:45:31.044928"], ["updated_at", "2021-10-26 20:45:31.044928"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 181], ["application_id", 65], ["created_at", "2021-10-26 20:45:31.064107"], ["updated_at", "2021-10-26 20:45:31.064107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 182], ["application_id", 65], ["created_at", "2021-10-26 20:45:31.067310"], ["updated_at", "2021-10-26 20:45:31.067310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/65” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"65"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 65)
Rendered applications/show.html.erb within layouts/application (8.4ms)

Completed 200 OK in 105ms (Views: 97.1ms | ActiveRecord: 2.1ms) Started GET “/pets/181” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"181"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 181], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.6ms) Started GET “/applications/65” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"65"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 65)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.1ms) Started GET “/pets/182” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"182"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 182], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:45:31.263446"], ["updated_at", "2021-10-26 20:45:31.263446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 66], ["created_at", "2021-10-26 20:45:31.264850"], ["updated_at", "2021-10-26 20:45:31.264850"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 66], ["created_at", "2021-10-26 20:45:31.266677"], ["updated_at", "2021-10-26 20:45:31.266677"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 66], ["created_at", "2021-10-26 20:45:31.268249"], ["updated_at", "2021-10-26 20:45:31.268249"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:45:31.269628"], ["updated_at", "2021-10-26 20:45:31.269628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/66” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"66"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 66)
Rendered applications/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.3ms) Started GET “/applications/66?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"66"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 66)
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.5ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:45:31.296596"], ["updated_at", "2021-10-26 20:45:31.296596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 67], ["created_at", "2021-10-26 20:45:31.299140"], ["updated_at", "2021-10-26 20:45:31.299140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:45:31.300848"], ["updated_at", "2021-10-26 20:45:31.300848"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/67” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"67"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.3ms) Started GET “/applications/67?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"67"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.3ms)

Completed 200 OK in 6ms (Views: 3.1ms | ActiveRecord: 1.2ms) Started POST “/application_pets?app_id=67&pet_id=187” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"67", "pet_id"=>"187"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 187], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 187], ["application_id", 67], ["created_at", "2021-10-26 20:45:31.338468"], ["updated_at", "2021-10-26 20:45:31.338468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/67 Completed 302 Found in 4ms (ActiveRecord: 1.1ms) Started GET “/applications/67” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"67"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.7ms)

 (0.3ms)  ROLLBACK
 (1.8ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:46:05.912183"], ["updated_at", "2021-10-26 20:46:05.912183"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 68], ["created_at", "2021-10-26 20:46:05.950992"], ["updated_at", "2021-10-26 20:46:05.950992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 68], ["created_at", "2021-10-26 20:46:05.954253"], ["updated_at", "2021-10-26 20:46:05.954253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 68], ["created_at", "2021-10-26 20:46:05.956217"], ["updated_at", "2021-10-26 20:46:05.956217"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Create (1.0ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:46:05.984433"], ["updated_at", "2021-10-26 20:46:05.984433"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 188], ["application_id", 68], ["created_at", "2021-10-26 20:46:06.004248"], ["updated_at", "2021-10-26 20:46:06.004248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 189], ["application_id", 68], ["created_at", "2021-10-26 20:46:06.007419"], ["updated_at", "2021-10-26 20:46:06.007419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/68” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"68"}
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
Rendered applications/show.html.erb within layouts/application (9.2ms)

Completed 200 OK in 98ms (Views: 88.5ms | ActiveRecord: 3.3ms) Started GET “/pets/188” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"188"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 188], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.6ms) Started GET “/applications/68” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"68"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.2ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.8ms) Started GET “/pets/189” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"189"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 189], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.8ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:46:06.176159"], ["updated_at", "2021-10-26 20:46:06.176159"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 69], ["created_at", "2021-10-26 20:46:06.177702"], ["updated_at", "2021-10-26 20:46:06.177702"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 69], ["created_at", "2021-10-26 20:46:06.178978"], ["updated_at", "2021-10-26 20:46:06.178978"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 69], ["created_at", "2021-10-26 20:46:06.180481"], ["updated_at", "2021-10-26 20:46:06.180481"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:46:06.181479"], ["updated_at", "2021-10-26 20:46:06.181479"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/69” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"69"}
Application Load (0.7ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.8ms) Started GET “/applications/69?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"69"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.4ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:46:06.202635"], ["updated_at", "2021-10-26 20:46:06.202635"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 70], ["created_at", "2021-10-26 20:46:06.204260"], ["updated_at", "2021-10-26 20:46:06.204260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:46:06.205173"], ["updated_at", "2021-10-26 20:46:06.205173"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/70” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"70"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.0ms) Started GET “/applications/70?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"70"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.2ms)

Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 1.6ms) Started POST “/application_pets?app_id=70&pet_id=194” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"70", "pet_id"=>"194"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 194], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 194], ["application_id", 70], ["created_at", "2021-10-26 20:46:06.225055"], ["updated_at", "2021-10-26 20:46:06.225055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/70 Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET “/applications/70” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"70"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.7ms)

 (2.0ms)  ROLLBACK
 (2.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (5.0ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.4ms)

Completed 200 OK in 99ms (Views: 94.9ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (6.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (14.0ms)

Completed 200 OK in 23ms (Views: 8.7ms | ActiveRecord: 12.6ms)

 (5.5ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (7.8ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (8.9ms)

Completed 200 OK in 14ms (Views: 2.0ms | ActiveRecord: 11.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.7ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 3.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (1.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (2.0ms)

Completed 200 OK in 7ms (Views: 1.9ms | ActiveRecord: 3.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (2.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:57.272919"], ["updated_at", "2021-10-27 00:06:57.272919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (2.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 71], ["created_at", "2021-10-27 00:06:57.312445"], ["updated_at", "2021-10-27 00:06:57.312445"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 71], ["created_at", "2021-10-27 00:06:57.315761"], ["updated_at", "2021-10-27 00:06:57.315761"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 71], ["created_at", "2021-10-27 00:06:57.316951"], ["updated_at", "2021-10-27 00:06:57.316951"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:57.335954"], ["updated_at", "2021-10-27 00:06:57.335954"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 195], ["application_id", 71], ["created_at", "2021-10-27 00:06:57.354797"], ["updated_at", "2021-10-27 00:06:57.354797"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 196], ["application_id", 71], ["created_at", "2021-10-27 00:06:57.357171"], ["updated_at", "2021-10-27 00:06:57.357171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/71” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"71"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)
Rendered applications/show.html.erb within layouts/application (5.1ms)

Completed 200 OK in 9ms (Views: 4.9ms | ActiveRecord: 1.9ms) Started GET “/pets/195” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"195"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 195], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.6ms) Started GET “/applications/71” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"71"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.9ms) Started GET “/pets/196” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"196"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 196], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:57.390130"], ["updated_at", "2021-10-27 00:06:57.390130"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 72], ["created_at", "2021-10-27 00:06:57.391724"], ["updated_at", "2021-10-27 00:06:57.391724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 72], ["created_at", "2021-10-27 00:06:57.392892"], ["updated_at", "2021-10-27 00:06:57.392892"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 72], ["created_at", "2021-10-27 00:06:57.394340"], ["updated_at", "2021-10-27 00:06:57.394340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:57.395598"], ["updated_at", "2021-10-27 00:06:57.395598"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/72” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"72"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.3ms) Started GET “/applications/72?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"72"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)
Pet Load (1.2ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.3ms)

Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 2.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:57.417771"], ["updated_at", "2021-10-27 00:06:57.417771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 73], ["created_at", "2021-10-27 00:06:57.419342"], ["updated_at", "2021-10-27 00:06:57.419342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:57.420507"], ["updated_at", "2021-10-27 00:06:57.420507"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/73” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"73"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 73)
Rendered applications/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.7ms) Started GET “/applications/73?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"73"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 73)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.3ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.7ms) Started POST “/application_pets?app_id=73&pet_id=201” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"73", "pet_id"=>"201"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 201], ["LIMIT", 1]]
ApplicationPet Create (0.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 201], ["application_id", 73], ["created_at", "2021-10-27 00:06:57.439897"], ["updated_at", "2021-10-27 00:06:57.439897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/73 Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET “/applications/73” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"73"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 73)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.8ms)

 (1.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.458705"], ["updated_at", "2021-10-27 00:06:57.458705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/74/pets/new” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"74"}
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (5.9ms)

Completed 200 OK in 10ms (Views: 7.3ms | ActiveRecord: 0.5ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.480117"], ["updated_at", "2021-10-27 00:06:57.480117"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/75/pets/new” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"75"}
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started POST “/shelters/75/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"75"}

Unpermitted parameters: :utf8, :commit

 (0.5ms)  SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 75], ["created_at", "2021-10-27 00:06:57.494396"], ["updated_at", "2021-10-27 00:06:57.494396"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/75/pets Completed 302 Found in 5ms (ActiveRecord: 2.2ms) Started GET “/shelters/75/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"75"}
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 75], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.7ms)

Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 0.8ms)

 (0.2ms)  ROLLBACK
 (1.7ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (3.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.509977"], ["updated_at", "2021-10-27 00:06:57.509977"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/76/pets/new” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"76"}
Shelter Load (60.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.7ms)

Completed 200 OK in 62ms (Views: 1.4ms | ActiveRecord: 60.0ms) Started POST “/shelters/76/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"76"}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
 (32.7ms)  ROLLBACK TO SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/76/pets/new Completed 302 Found in 37ms (ActiveRecord: 33.1ms) Started GET “/shelters/76/pets/new” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"76"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.628645"], ["updated_at", "2021-10-27 00:06:57.628645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 77], ["created_at", "2021-10-27 00:06:57.630738"], ["updated_at", "2021-10-27 00:06:57.630738"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 77], ["created_at", "2021-10-27 00:06:57.632659"], ["updated_at", "2021-10-27 00:06:57.632659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (7.4ms)

Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.653734"], ["updated_at", "2021-10-27 00:06:57.653734"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 78], ["created_at", "2021-10-27 00:06:57.655639"], ["updated_at", "2021-10-27 00:06:57.655639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 78], ["created_at", "2021-10-27 00:06:57.656976"], ["updated_at", "2021-10-27 00:06:57.656976"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 78], ["created_at", "2021-10-27 00:06:57.658318"], ["updated_at", "2021-10-27 00:06:57.658318"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.664549"], ["updated_at", "2021-10-27 00:06:57.664549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 79], ["created_at", "2021-10-27 00:06:57.666165"], ["updated_at", "2021-10-27 00:06:57.666165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 79], ["created_at", "2021-10-27 00:06:57.668504"], ["updated_at", "2021-10-27 00:06:57.668504"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.3ms) Started GET “/pets/208/edit” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"208"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 208], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.684859"], ["updated_at", "2021-10-27 00:06:57.684859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 80], ["created_at", "2021-10-27 00:06:57.686839"], ["updated_at", "2021-10-27 00:06:57.686839"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 80], ["created_at", "2021-10-27 00:06:57.689257"], ["updated_at", "2021-10-27 00:06:57.689257"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (1.9ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (4.7ms)

Completed 200 OK in 7ms (Views: 3.4ms | ActiveRecord: 2.2ms) Started DELETE “/pets/210” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"210"}
Pet Load (0.7ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 210], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (27.3ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 210]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 31ms (ActiveRecord: 28.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.1ms)

Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.8ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.2ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.769135"], ["updated_at", "2021-10-27 00:06:57.769135"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 81], ["created_at", "2021-10-27 00:06:57.771213"], ["updated_at", "2021-10-27 00:06:57.771213"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 81], ["created_at", "2021-10-27 00:06:57.773211"], ["updated_at", "2021-10-27 00:06:57.773211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 81], ["created_at", "2021-10-27 00:06:57.775229"], ["updated_at", "2021-10-27 00:06:57.775229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (44.5ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (46.2ms)

Completed 200 OK in 47ms (Views: 2.4ms | ActiveRecord: 44.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (2.6ms)

Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit

 (0.6ms)  SAVEPOINT active_record_1
Application Create (4.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:57.870220"], ["updated_at", "2021-10-27 00:06:57.870220"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Update (1.2ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-27 00:06:57.876918"], ["id", 74]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/74 Completed 302 Found in 34ms (ActiveRecord: 7.0ms) Started GET “/applications/74” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"74"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 74)
Rendered applications/show.html.erb within layouts/application (2.1ms)

Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 1.2ms)

Application Load (0.3ms)  SELECT  "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1  [["LIMIT", 1]]
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.924069"], ["updated_at", "2021-10-27 00:06:57.924069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 82], ["created_at", "2021-10-27 00:06:57.927992"], ["updated_at", "2021-10-27 00:06:57.927992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/215” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"215"}
Pet Load (1.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 215], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.6ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (4.7ms)

Completed 200 OK in 12ms (Views: 8.2ms | ActiveRecord: 2.0ms)

 (1.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.960581"], ["updated_at", "2021-10-27 00:06:57.960581"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 83], ["created_at", "2021-10-27 00:06:57.963940"], ["updated_at", "2021-10-27 00:06:57.963940"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/216” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"216"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 216], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started DELETE “/pets/216” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"216"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 216], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.5ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 216]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 0.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)

 (1.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-27 00:06:57.990148"], ["updated_at", "2021-10-27 00:06:57.990148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 84], ["created_at", "2021-10-27 00:06:57.992731"], ["updated_at", "2021-10-27 00:06:57.992731"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/217/edit” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"217"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 217], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.9ms)

Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 00:06:58.004177"], ["updated_at", "2021-10-27 00:06:58.004177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 85], ["created_at", "2021-10-27 00:06:58.006104"], ["updated_at", "2021-10-27 00:06:58.006104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/218/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"218"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 218], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.2ms)

Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.3ms) Started PATCH “/pets/218” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"218"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 218], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Pet Update (0.5ms)  UPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6  [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-27 00:06:58.031656"], ["id", 218]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets/218 Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET “/pets/218” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"218"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 218], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 00:06:58.038838"], ["updated_at", "2021-10-27 00:06:58.038838"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 86], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 86], ["created_at", "2021-10-27 00:06:58.040687"], ["updated_at", "2021-10-27 00:06:58.040687"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/219/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"219"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 219], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms) Started PATCH “/pets/219” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"219"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 219], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 86], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/pets/219/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/pets/219/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"219"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 219], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.3ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Shelter", "city"=>"Houston", "foster_program"=>"1", "rank"=>"7", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Houston Shelter"], ["city", "Houston"], ["rank", 7], ["created_at", "2021-10-27 00:06:58.076220"], ["updated_at", "2021-10-27 00:06:58.076220"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 3ms (ActiveRecord: 1.1ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"", "foster_program"=>"0", "rank"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.8ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/shelters/new Completed 302 Found in 4ms (ActiveRecord: 0.9ms) Started GET “/shelters/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.100315"], ["updated_at", "2021-10-27 00:06:58.100315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.101616"], ["updated_at", "2021-10-27 00:06:58.101616"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.102642"], ["updated_at", "2021-10-27 00:06:58.102642"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 88], ["created_at", "2021-10-27 00:06:58.105352"], ["updated_at", "2021-10-27 00:06:58.105352"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (2.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 88], ["created_at", "2021-10-27 00:06:58.106993"], ["updated_at", "2021-10-27 00:06:58.106993"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 90], ["created_at", "2021-10-27 00:06:58.111224"], ["updated_at", "2021-10-27 00:06:58.111224"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (2.0ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (2.8ms)

Completed 200 OK in 4ms (Views: 1.4ms | ActiveRecord: 2.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.121315"], ["updated_at", "2021-10-27 00:06:58.121315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.123084"], ["updated_at", "2021-10-27 00:06:58.123084"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.124671"], ["updated_at", "2021-10-27 00:06:58.124671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 91], ["created_at", "2021-10-27 00:06:58.126262"], ["updated_at", "2021-10-27 00:06:58.126262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 91], ["created_at", "2021-10-27 00:06:58.127465"], ["updated_at", "2021-10-27 00:06:58.127465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 93], ["created_at", "2021-10-27 00:06:58.128574"], ["updated_at", "2021-10-27 00:06:58.128574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.137623"], ["updated_at", "2021-10-27 00:06:58.137623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.138689"], ["updated_at", "2021-10-27 00:06:58.138689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.139533"], ["updated_at", "2021-10-27 00:06:58.139533"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 94], ["created_at", "2021-10-27 00:06:58.140703"], ["updated_at", "2021-10-27 00:06:58.140703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 94], ["created_at", "2021-10-27 00:06:58.141841"], ["updated_at", "2021-10-27 00:06:58.141841"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 96], ["created_at", "2021-10-27 00:06:58.143011"], ["updated_at", "2021-10-27 00:06:58.143011"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started GET “/shelters?sort=pet_count” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Parameters: {"sort"=>"pet_count"}
Rendering shelters/index.html.erb within layouts/application
Shelter Load (1.8ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
Rendered shelters/index.html.erb within layouts/application (2.6ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.8ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.154252"], ["updated_at", "2021-10-27 00:06:58.154252"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.155267"], ["updated_at", "2021-10-27 00:06:58.155267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.156137"], ["updated_at", "2021-10-27 00:06:58.156137"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 97], ["created_at", "2021-10-27 00:06:58.157573"], ["updated_at", "2021-10-27 00:06:58.157573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 97], ["created_at", "2021-10-27 00:06:58.158710"], ["updated_at", "2021-10-27 00:06:58.158710"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 99], ["created_at", "2021-10-27 00:06:58.160094"], ["updated_at", "2021-10-27 00:06:58.160094"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/shelters/97/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"97"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.9ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.172177"], ["updated_at", "2021-10-27 00:06:58.172177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.173467"], ["updated_at", "2021-10-27 00:06:58.173467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.174446"], ["updated_at", "2021-10-27 00:06:58.174446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 100], ["created_at", "2021-10-27 00:06:58.176044"], ["updated_at", "2021-10-27 00:06:58.176044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 100], ["created_at", "2021-10-27 00:06:58.177449"], ["updated_at", "2021-10-27 00:06:58.177449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 102], ["created_at", "2021-10-27 00:06:58.178571"], ["updated_at", "2021-10-27 00:06:58.178571"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started DELETE “/shelters/100” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#destroy as HTML

Parameters: {"id"=>"100"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 100]]
Pet Destroy (0.7ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 232]]
Pet Destroy (0.6ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 233]]
Shelter Destroy (0.6ms)  DELETE FROM "shelters" WHERE "shelters"."id" = $1  [["id", 100]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 4ms (ActiveRecord: 2.6ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.196761"], ["updated_at", "2021-10-27 00:06:58.196761"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.197903"], ["updated_at", "2021-10-27 00:06:58.197903"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.198822"], ["updated_at", "2021-10-27 00:06:58.198822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 103], ["created_at", "2021-10-27 00:06:58.200039"], ["updated_at", "2021-10-27 00:06:58.200039"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 103], ["created_at", "2021-10-27 00:06:58.201202"], ["updated_at", "2021-10-27 00:06:58.201202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 105], ["created_at", "2021-10-27 00:06:58.202503"], ["updated_at", "2021-10-27 00:06:58.202503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.211522"], ["updated_at", "2021-10-27 00:06:58.211522"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.212574"], ["updated_at", "2021-10-27 00:06:58.212574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.213372"], ["updated_at", "2021-10-27 00:06:58.213372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 106], ["created_at", "2021-10-27 00:06:58.214459"], ["updated_at", "2021-10-27 00:06:58.214459"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 106], ["created_at", "2021-10-27 00:06:58.215555"], ["updated_at", "2021-10-27 00:06:58.215555"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 108], ["created_at", "2021-10-27 00:06:58.216719"], ["updated_at", "2021-10-27 00:06:58.216719"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/shelters?utf8=%E2%9C%93&search=RGV&commit=Search” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"RGV", "commit"=>"Search"}
Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%RGV%')
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.227588"], ["updated_at", "2021-10-27 00:06:58.227588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.228661"], ["updated_at", "2021-10-27 00:06:58.228661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 109], ["created_at", "2021-10-27 00:06:58.230080"], ["updated_at", "2021-10-27 00:06:58.230080"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 109], ["created_at", "2021-10-27 00:06:58.231383"], ["updated_at", "2021-10-27 00:06:58.231383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 110], ["created_at", "2021-10-27 00:06:58.232759"], ["updated_at", "2021-10-27 00:06:58.232759"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 109], ["created_at", "2021-10-27 00:06:58.233967"], ["updated_at", "2021-10-27 00:06:58.233967"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/109/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"109"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 109], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.249655"], ["updated_at", "2021-10-27 00:06:58.249655"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.250940"], ["updated_at", "2021-10-27 00:06:58.250940"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 111], ["created_at", "2021-10-27 00:06:58.252529"], ["updated_at", "2021-10-27 00:06:58.252529"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 111], ["created_at", "2021-10-27 00:06:58.254114"], ["updated_at", "2021-10-27 00:06:58.254114"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 112], ["created_at", "2021-10-27 00:06:58.255813"], ["updated_at", "2021-10-27 00:06:58.255813"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 111], ["created_at", "2021-10-27 00:06:58.257755"], ["updated_at", "2021-10-27 00:06:58.257755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/111/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"111"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 111], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/shelters/111/pets/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"111"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.267643"], ["updated_at", "2021-10-27 00:06:58.267643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.268891"], ["updated_at", "2021-10-27 00:06:58.268891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 113], ["created_at", "2021-10-27 00:06:58.270685"], ["updated_at", "2021-10-27 00:06:58.270685"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 113], ["created_at", "2021-10-27 00:06:58.272284"], ["updated_at", "2021-10-27 00:06:58.272284"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 114], ["created_at", "2021-10-27 00:06:58.273881"], ["updated_at", "2021-10-27 00:06:58.273881"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 113], ["created_at", "2021-10-27 00:06:58.275727"], ["updated_at", "2021-10-27 00:06:58.275727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/113/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"113"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 113], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/pets/249/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"249"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 249], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.285246"], ["updated_at", "2021-10-27 00:06:58.285246"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.286505"], ["updated_at", "2021-10-27 00:06:58.286505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 115], ["created_at", "2021-10-27 00:06:58.288312"], ["updated_at", "2021-10-27 00:06:58.288312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 115], ["created_at", "2021-10-27 00:06:58.290152"], ["updated_at", "2021-10-27 00:06:58.290152"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 116], ["created_at", "2021-10-27 00:06:58.291680"], ["updated_at", "2021-10-27 00:06:58.291680"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 115], ["created_at", "2021-10-27 00:06:58.293389"], ["updated_at", "2021-10-27 00:06:58.293389"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/115/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"115"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 115], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started DELETE “/pets/253” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"253"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 253], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.8ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 253]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.2ms) Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.306887"], ["updated_at", "2021-10-27 00:06:58.306887"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.308243"], ["updated_at", "2021-10-27 00:06:58.308243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 117], ["created_at", "2021-10-27 00:06:58.310100"], ["updated_at", "2021-10-27 00:06:58.310100"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 117], ["created_at", "2021-10-27 00:06:58.311352"], ["updated_at", "2021-10-27 00:06:58.311352"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 118], ["created_at", "2021-10-27 00:06:58.312528"], ["updated_at", "2021-10-27 00:06:58.312528"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 117], ["created_at", "2021-10-27 00:06:58.313763"], ["updated_at", "2021-10-27 00:06:58.313763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/117/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"117"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 117], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.320981"], ["updated_at", "2021-10-27 00:06:58.320981"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.322111"], ["updated_at", "2021-10-27 00:06:58.322111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 119], ["created_at", "2021-10-27 00:06:58.323854"], ["updated_at", "2021-10-27 00:06:58.323854"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 119], ["created_at", "2021-10-27 00:06:58.325886"], ["updated_at", "2021-10-27 00:06:58.325886"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 120], ["created_at", "2021-10-27 00:06:58.327248"], ["updated_at", "2021-10-27 00:06:58.327248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 119], ["created_at", "2021-10-27 00:06:58.328455"], ["updated_at", "2021-10-27 00:06:58.328455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/119/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"119"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 119], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started GET “/shelters/119/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML

Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"119"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')  [["shelter_id", 119], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.342483"], ["updated_at", "2021-10-27 00:06:58.342483"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.343696"], ["updated_at", "2021-10-27 00:06:58.343696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 121], ["created_at", "2021-10-27 00:06:58.344990"], ["updated_at", "2021-10-27 00:06:58.344990"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 121], ["created_at", "2021-10-27 00:06:58.346403"], ["updated_at", "2021-10-27 00:06:58.346403"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 122], ["created_at", "2021-10-27 00:06:58.347998"], ["updated_at", "2021-10-27 00:06:58.347998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 121], ["created_at", "2021-10-27 00:06:58.349810"], ["updated_at", "2021-10-27 00:06:58.349810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/121/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"121"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 121], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/shelters/121/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML

Parameters: {"sort"=>"alphabetical", "shelter_id"=>"121"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 121], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.4ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.365353"], ["updated_at", "2021-10-27 00:06:58.365353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/123” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"123"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 123], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.6ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 123]]
Rendered shelters/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.8ms)

 (0.2ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.373105"], ["updated_at", "2021-10-27 00:06:58.373105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 124], ["created_at", "2021-10-27 00:06:58.375012"], ["updated_at", "2021-10-27 00:06:58.375012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/124” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"124"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 124]]
Rendered shelters/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.4ms)

 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 124]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.380704"], ["updated_at", "2021-10-27 00:06:58.380704"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/125” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"125"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 125]]
Rendered shelters/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms) Started DELETE “/shelters/125” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#destroy as HTML

Parameters: {"id"=>"125"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 125]]
Shelter Destroy (0.4ms)  DELETE FROM "shelters" WHERE "shelters"."id" = $1  [["id", 125]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.391508"], ["updated_at", "2021-10-27 00:06:58.391508"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/126” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"126"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 126], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 126]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms) Started GET “/shelters/126/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"126"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 126], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 126], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.399673"], ["updated_at", "2021-10-27 00:06:58.399673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/127/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"127"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.405555"], ["updated_at", "2021-10-27 00:06:58.405555"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/128/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"128"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 128], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/shelters/128” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita Shelter", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"10", "commit"=>"Save ", "id"=>"128"}

Unpermitted parameters: :utf8, :_method, :commit

Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 128], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Update (0.4ms)  UPDATE "shelters" SET "name" = $1, "city" = $2, "rank" = $3, "updated_at" = $4 WHERE "shelters"."id" = $5  [["name", "Wichita Shelter"], ["city", "Wichita"], ["rank", 10], ["updated_at", "2021-10-27 00:06:58.414928"], ["id", 128]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.421480"], ["updated_at", "2021-10-27 00:06:58.421480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/129/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"129"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 129], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/shelters/129” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"", "commit"=>"Save ", "id"=>"129"}

Unpermitted parameters: :utf8, :_method, :commit

Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 129], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/shelters/129/edit Completed 302 Found in 2ms (ActiveRecord: 0.3ms) Started GET “/shelters/129/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"129"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 129], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (1.1ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.447624"], ["updated_at", "2021-10-27 00:06:58.447624"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/1/veterinarians/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"1"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.8ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.457084"], ["updated_at", "2021-10-27 00:06:58.457084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/2/veterinarians/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"2"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started POST “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"2"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Veterinarian Create (1.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 2], ["created_at", "2021-10-27 00:06:58.478034"], ["updated_at", "2021-10-27 00:06:58.478034"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/2/veterinarians Completed 302 Found in 15ms (ActiveRecord: 8.8ms) Started GET “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"2"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (5.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 2], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (6.5ms)

Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 5.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.492775"], ["updated_at", "2021-10-27 00:06:58.492775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"3"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/3/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"3"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/3/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"3"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.507778"], ["updated_at", "2021-10-27 00:06:58.507778"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 00:06:58.509521"], ["updated_at", "2021-10-27 00:06:58.509521"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 00:06:58.510810"], ["updated_at", "2021-10-27 00:06:58.510810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.518829"], ["updated_at", "2021-10-27 00:06:58.518829"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 00:06:58.520858"], ["updated_at", "2021-10-27 00:06:58.520858"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 00:06:58.522389"], ["updated_at", "2021-10-27 00:06:58.522389"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.529836"], ["updated_at", "2021-10-27 00:06:58.529836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 00:06:58.531342"], ["updated_at", "2021-10-27 00:06:58.531342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 00:06:58.532941"], ["updated_at", "2021-10-27 00:06:58.532941"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/veterinarians/6/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"6"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 5ms (Views: 1.3ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.545240"], ["updated_at", "2021-10-27 00:06:58.545240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 00:06:58.546605"], ["updated_at", "2021-10-27 00:06:58.546605"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 00:06:58.548022"], ["updated_at", "2021-10-27 00:06:58.548022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started DELETE “/veterinarians/8” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"8"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 8]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.5ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.558339"], ["updated_at", "2021-10-27 00:06:58.558339"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 8], ["created_at", "2021-10-27 00:06:58.559872"], ["updated_at", "2021-10-27 00:06:58.559872"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/10” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"10"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.566742"], ["updated_at", "2021-10-27 00:06:58.566742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 9], ["created_at", "2021-10-27 00:06:58.568709"], ["updated_at", "2021-10-27 00:06:58.568709"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/11” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"11"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms) Started DELETE “/veterinarians/11” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"11"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.4ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 11]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.9ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 00:06:58.579222"], ["updated_at", "2021-10-27 00:06:58.579222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 10], ["created_at", "2021-10-27 00:06:58.580671"], ["updated_at", "2021-10-27 00:06:58.580671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/12/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"12"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 00:06:58.586280"], ["updated_at", "2021-10-27 00:06:58.586280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 11], ["created_at", "2021-10-27 00:06:58.587967"], ["updated_at", "2021-10-27 00:06:58.587967"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/13/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"13"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/13” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"13"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Veterinarian Update (0.4ms)  UPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5  [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-27 00:06:58.597027"], ["id", 13]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/13 Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinarians/13” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"13"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 00:06:58.602468"], ["updated_at", "2021-10-27 00:06:58.602468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 12], ["created_at", "2021-10-27 00:06:58.604030"], ["updated_at", "2021-10-27 00:06:58.604030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"14"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/14” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"14"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/14/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"14"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-27 00:06:58.630408"], ["updated_at", "2021-10-27 00:06:58.630408"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 00:06:58.647878"], ["updated_at", "2021-10-27 00:06:58.647878"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 00:06:58.648903"], ["updated_at", "2021-10-27 00:06:58.648903"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.649674"], ["updated_at", "2021-10-27 00:06:58.649674"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 00:06:58.651011"], ["updated_at", "2021-10-27 00:06:58.651011"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 00:06:58.652241"], ["updated_at", "2021-10-27 00:06:58.652241"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 16], ["created_at", "2021-10-27 00:06:58.653266"], ["updated_at", "2021-10-27 00:06:58.653266"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 00:06:58.660915"], ["updated_at", "2021-10-27 00:06:58.660915"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 00:06:58.662139"], ["updated_at", "2021-10-27 00:06:58.662139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.663191"], ["updated_at", "2021-10-27 00:06:58.663191"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 00:06:58.664487"], ["updated_at", "2021-10-27 00:06:58.664487"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 00:06:58.665777"], ["updated_at", "2021-10-27 00:06:58.665777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 19], ["created_at", "2021-10-27 00:06:58.667052"], ["updated_at", "2021-10-27 00:06:58.667052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 00:06:58.677337"], ["updated_at", "2021-10-27 00:06:58.677337"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 00:06:58.678559"], ["updated_at", "2021-10-27 00:06:58.678559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.679532"], ["updated_at", "2021-10-27 00:06:58.679532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 00:06:58.680842"], ["updated_at", "2021-10-27 00:06:58.680842"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 00:06:58.682182"], ["updated_at", "2021-10-27 00:06:58.682182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 22], ["created_at", "2021-10-27 00:06:58.683573"], ["updated_at", "2021-10-27 00:06:58.683573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML

Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.7ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 00:06:58.694149"], ["updated_at", "2021-10-27 00:06:58.694149"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 00:06:58.695378"], ["updated_at", "2021-10-27 00:06:58.695378"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.696367"], ["updated_at", "2021-10-27 00:06:58.696367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 00:06:58.697715"], ["updated_at", "2021-10-27 00:06:58.697715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 00:06:58.698971"], ["updated_at", "2021-10-27 00:06:58.698971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 25], ["created_at", "2021-10-27 00:06:58.700229"], ["updated_at", "2021-10-27 00:06:58.700229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/23/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"23"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 00:06:58.711774"], ["updated_at", "2021-10-27 00:06:58.711774"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 00:06:58.712800"], ["updated_at", "2021-10-27 00:06:58.712800"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.713768"], ["updated_at", "2021-10-27 00:06:58.713768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 00:06:58.715126"], ["updated_at", "2021-10-27 00:06:58.715126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 00:06:58.716116"], ["updated_at", "2021-10-27 00:06:58.716116"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 28], ["created_at", "2021-10-27 00:06:58.717123"], ["updated_at", "2021-10-27 00:06:58.717123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started DELETE “/veterinary_offices/26” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"26"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 26], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 26]]
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 27]]
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 28]]
VeterinaryOffice Destroy (0.6ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 26]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 4ms (ActiveRecord: 1.9ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.731958"], ["updated_at", "2021-10-27 00:06:58.731958"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/29” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"29"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 29]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.738821"], ["updated_at", "2021-10-27 00:06:58.738821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/30” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"30"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 30], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 30]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.2ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 30]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 00:06:58.744521"], ["updated_at", "2021-10-27 00:06:58.744521"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/31” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"31"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.2ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 31]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms) Started DELETE “/veterinary_offices/31” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"31"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 31]]
VeterinaryOffice Destroy (0.5ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 31]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 1.1ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 00:06:58.754998"], ["updated_at", "2021-10-27 00:06:58.754998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/32” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"32"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 32]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms) Started GET “/veterinary_offices/32/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"32"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 32], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 00:06:58.763440"], ["updated_at", "2021-10-27 00:06:58.763440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/33/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"33"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 00:06:58.769262"], ["updated_at", "2021-10-27 00:06:58.769262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/34/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"34"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/veterinary_offices/34” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"34"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Update (0.4ms)  UPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4  [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-27 00:06:58.778584"], ["id", 34]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 00:06:58.784588"], ["updated_at", "2021-10-27 00:06:58.784588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"35"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started PATCH “/veterinary_offices/35” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"35"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/35/edit Completed 302 Found in 2ms (ActiveRecord: 0.3ms) Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"35"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.798496"], ["updated_at", "2021-10-27 00:06:58.798496"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.799792"], ["updated_at", "2021-10-27 00:06:58.799792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 00:06:58.801748"], ["updated_at", "2021-10-27 00:06:58.801748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 00:06:58.803177"], ["updated_at", "2021-10-27 00:06:58.803177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 00:06:58.804349"], ["updated_at", "2021-10-27 00:06:58.804349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 00:06:58.805893"], ["updated_at", "2021-10-27 00:06:58.805893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 00:06:58.807442"], ["updated_at", "2021-10-27 00:06:58.807442"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/36/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"36"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 36], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.815660"], ["updated_at", "2021-10-27 00:06:58.815660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.817055"], ["updated_at", "2021-10-27 00:06:58.817055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.9ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 00:06:58.819019"], ["updated_at", "2021-10-27 00:06:58.819019"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 00:06:58.821053"], ["updated_at", "2021-10-27 00:06:58.821053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 00:06:58.822273"], ["updated_at", "2021-10-27 00:06:58.822273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 00:06:58.823455"], ["updated_at", "2021-10-27 00:06:58.823455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 00:06:58.824655"], ["updated_at", "2021-10-27 00:06:58.824655"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/38/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"38"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 38], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started GET “/veterinarians/36/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"36"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.834825"], ["updated_at", "2021-10-27 00:06:58.834825"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.836012"], ["updated_at", "2021-10-27 00:06:58.836012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 00:06:58.837379"], ["updated_at", "2021-10-27 00:06:58.837379"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 00:06:58.840553"], ["updated_at", "2021-10-27 00:06:58.840553"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 00:06:58.842161"], ["updated_at", "2021-10-27 00:06:58.842161"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 00:06:58.843828"], ["updated_at", "2021-10-27 00:06:58.843828"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 00:06:58.845348"], ["updated_at", "2021-10-27 00:06:58.845348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/40/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"40"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 40], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms) Started DELETE “/veterinarians/41” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"41"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 41]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.5ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.858678"], ["updated_at", "2021-10-27 00:06:58.858678"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.859887"], ["updated_at", "2021-10-27 00:06:58.859887"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 00:06:58.861341"], ["updated_at", "2021-10-27 00:06:58.861341"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 00:06:58.862858"], ["updated_at", "2021-10-27 00:06:58.862858"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 00:06:58.864316"], ["updated_at", "2021-10-27 00:06:58.864316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 00:06:58.865755"], ["updated_at", "2021-10-27 00:06:58.865755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 00:06:58.867460"], ["updated_at", "2021-10-27 00:06:58.867460"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/42/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"42"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 42], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/42/veterinarians/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"42"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.876890"], ["updated_at", "2021-10-27 00:06:58.876890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.878062"], ["updated_at", "2021-10-27 00:06:58.878062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 00:06:58.879515"], ["updated_at", "2021-10-27 00:06:58.879515"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 00:06:58.881155"], ["updated_at", "2021-10-27 00:06:58.881155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 00:06:58.882689"], ["updated_at", "2021-10-27 00:06:58.882689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 00:06:58.884147"], ["updated_at", "2021-10-27 00:06:58.884147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 00:06:58.885691"], ["updated_at", "2021-10-27 00:06:58.885691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/44/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"44"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 44], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.891886"], ["updated_at", "2021-10-27 00:06:58.891886"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.892987"], ["updated_at", "2021-10-27 00:06:58.892987"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 00:06:58.894407"], ["updated_at", "2021-10-27 00:06:58.894407"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 00:06:58.895953"], ["updated_at", "2021-10-27 00:06:58.895953"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 00:06:58.897693"], ["updated_at", "2021-10-27 00:06:58.897693"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 00:06:58.898932"], ["updated_at", "2021-10-27 00:06:58.898932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 00:06:58.900119"], ["updated_at", "2021-10-27 00:06:58.900119"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/46/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"46"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices/46/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"46"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.6ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')  [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.8ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.913543"], ["updated_at", "2021-10-27 00:06:58.913543"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.914950"], ["updated_at", "2021-10-27 00:06:58.914950"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 00:06:58.916185"], ["updated_at", "2021-10-27 00:06:58.916185"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 00:06:58.917346"], ["updated_at", "2021-10-27 00:06:58.917346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 00:06:58.918439"], ["updated_at", "2021-10-27 00:06:58.918439"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 00:06:58.919603"], ["updated_at", "2021-10-27 00:06:58.919603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 00:06:58.921145"], ["updated_at", "2021-10-27 00:06:58.921145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/49/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"49"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.7ms) Started GET “/veterinary_offices/49/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"49"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.6ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.9ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:58.938960"], ["updated_at", "2021-10-27 00:06:58.938960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 130], ["created_at", "2021-10-27 00:06:58.940616"], ["updated_at", "2021-10-27 00:06:58.940616"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 130], ["created_at", "2021-10-27 00:06:58.942035"], ["updated_at", "2021-10-27 00:06:58.942035"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 130], ["created_at", "2021-10-27 00:06:58.943381"], ["updated_at", "2021-10-27 00:06:58.943381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:58.944563"], ["updated_at", "2021-10-27 00:06:58.944563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 270], ["application_id", 75], ["created_at", "2021-10-27 00:06:58.946623"], ["updated_at", "2021-10-27 00:06:58.946623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 271], ["application_id", 75], ["created_at", "2021-10-27 00:06:58.948013"], ["updated_at", "2021-10-27 00:06:58.948013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 75)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 75)
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:58.954457"], ["updated_at", "2021-10-27 00:06:58.954457"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 131], ["created_at", "2021-10-27 00:06:58.955712"], ["updated_at", "2021-10-27 00:06:58.955712"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 131], ["created_at", "2021-10-27 00:06:58.957098"], ["updated_at", "2021-10-27 00:06:58.957098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 131], ["created_at", "2021-10-27 00:06:58.958093"], ["updated_at", "2021-10-27 00:06:58.958093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:58.958977"], ["updated_at", "2021-10-27 00:06:58.958977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 273], ["application_id", 76], ["created_at", "2021-10-27 00:06:58.960586"], ["updated_at", "2021-10-27 00:06:58.960586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 274], ["application_id", 76], ["created_at", "2021-10-27 00:06:58.961826"], ["updated_at", "2021-10-27 00:06:58.961826"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:58.964175"], ["updated_at", "2021-10-27 00:06:58.964175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 132], ["created_at", "2021-10-27 00:06:58.965509"], ["updated_at", "2021-10-27 00:06:58.965509"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 132], ["created_at", "2021-10-27 00:06:58.966515"], ["updated_at", "2021-10-27 00:06:58.966515"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 132], ["created_at", "2021-10-27 00:06:58.967733"], ["updated_at", "2021-10-27 00:06:58.967733"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:58.968879"], ["updated_at", "2021-10-27 00:06:58.968879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 276], ["application_id", 77], ["created_at", "2021-10-27 00:06:58.970294"], ["updated_at", "2021-10-27 00:06:58.970294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 277], ["application_id", 77], ["created_at", "2021-10-27 00:06:58.971446"], ["updated_at", "2021-10-27 00:06:58.971446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.973804"], ["updated_at", "2021-10-27 00:06:58.973804"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 133], ["created_at", "2021-10-27 00:06:58.974924"], ["updated_at", "2021-10-27 00:06:58.974924"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 133], ["created_at", "2021-10-27 00:06:58.976366"], ["updated_at", "2021-10-27 00:06:58.976366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 133], ["created_at", "2021-10-27 00:06:58.977536"], ["updated_at", "2021-10-27 00:06:58.977536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.980634"], ["updated_at", "2021-10-27 00:06:58.980634"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 134], ["created_at", "2021-10-27 00:06:58.981734"], ["updated_at", "2021-10-27 00:06:58.981734"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 134], ["created_at", "2021-10-27 00:06:58.982715"], ["updated_at", "2021-10-27 00:06:58.982715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 134], ["created_at", "2021-10-27 00:06:58.983971"], ["updated_at", "2021-10-27 00:06:58.983971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.985594"], ["updated_at", "2021-10-27 00:06:58.985594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 135], ["created_at", "2021-10-27 00:06:58.986614"], ["updated_at", "2021-10-27 00:06:58.986614"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 135], ["created_at", "2021-10-27 00:06:58.988051"], ["updated_at", "2021-10-27 00:06:58.988051"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 135], ["created_at", "2021-10-27 00:06:58.989341"], ["updated_at", "2021-10-27 00:06:58.989341"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.991397"], ["updated_at", "2021-10-27 00:06:58.991397"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 136], ["created_at", "2021-10-27 00:06:58.992688"], ["updated_at", "2021-10-27 00:06:58.992688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 136], ["created_at", "2021-10-27 00:06:58.993665"], ["updated_at", "2021-10-27 00:06:58.993665"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 136], ["created_at", "2021-10-27 00:06:58.994655"], ["updated_at", "2021-10-27 00:06:58.994655"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.000168"], ["updated_at", "2021-10-27 00:06:59.000168"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 137], ["created_at", "2021-10-27 00:06:59.001406"], ["updated_at", "2021-10-27 00:06:59.001406"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 137], ["created_at", "2021-10-27 00:06:59.002381"], ["updated_at", "2021-10-27 00:06:59.002381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 137], ["created_at", "2021-10-27 00:06:59.003608"], ["updated_at", "2021-10-27 00:06:59.003608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.007467"], ["updated_at", "2021-10-27 00:06:59.007467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 138], ["created_at", "2021-10-27 00:06:59.008740"], ["updated_at", "2021-10-27 00:06:59.008740"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 138], ["created_at", "2021-10-27 00:06:59.009738"], ["updated_at", "2021-10-27 00:06:59.009738"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 138], ["created_at", "2021-10-27 00:06:59.010781"], ["updated_at", "2021-10-27 00:06:59.010781"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.013617"], ["updated_at", "2021-10-27 00:06:59.013617"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 139], ["created_at", "2021-10-27 00:06:59.014699"], ["updated_at", "2021-10-27 00:06:59.014699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 139], ["created_at", "2021-10-27 00:06:59.016000"], ["updated_at", "2021-10-27 00:06:59.016000"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 139], ["created_at", "2021-10-27 00:06:59.016996"], ["updated_at", "2021-10-27 00:06:59.016996"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.019188"], ["updated_at", "2021-10-27 00:06:59.019188"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 140], ["created_at", "2021-10-27 00:06:59.020952"], ["updated_at", "2021-10-27 00:06:59.020952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 140], ["created_at", "2021-10-27 00:06:59.022128"], ["updated_at", "2021-10-27 00:06:59.022128"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 140], ["created_at", "2021-10-27 00:06:59.023102"], ["updated_at", "2021-10-27 00:06:59.023102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.025012"], ["updated_at", "2021-10-27 00:06:59.025012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 141], ["created_at", "2021-10-27 00:06:59.026035"], ["updated_at", "2021-10-27 00:06:59.026035"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 141], ["created_at", "2021-10-27 00:06:59.027297"], ["updated_at", "2021-10-27 00:06:59.027297"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 141], ["created_at", "2021-10-27 00:06:59.028526"], ["updated_at", "2021-10-27 00:06:59.028526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.030261"], ["updated_at", "2021-10-27 00:06:59.030261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.031347"], ["updated_at", "2021-10-27 00:06:59.031347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.032351"], ["updated_at", "2021-10-27 00:06:59.032351"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 142], ["created_at", "2021-10-27 00:06:59.033342"], ["updated_at", "2021-10-27 00:06:59.033342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 142], ["created_at", "2021-10-27 00:06:59.034349"], ["updated_at", "2021-10-27 00:06:59.034349"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 144], ["created_at", "2021-10-27 00:06:59.035998"], ["updated_at", "2021-10-27 00:06:59.035998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 142], ["created_at", "2021-10-27 00:06:59.037058"], ["updated_at", "2021-10-27 00:06:59.037058"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.038754"], ["updated_at", "2021-10-27 00:06:59.038754"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.039572"], ["updated_at", "2021-10-27 00:06:59.039572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.040361"], ["updated_at", "2021-10-27 00:06:59.040361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 145], ["created_at", "2021-10-27 00:06:59.041428"], ["updated_at", "2021-10-27 00:06:59.041428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 145], ["created_at", "2021-10-27 00:06:59.042752"], ["updated_at", "2021-10-27 00:06:59.042752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 147], ["created_at", "2021-10-27 00:06:59.044148"], ["updated_at", "2021-10-27 00:06:59.044148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 145], ["created_at", "2021-10-27 00:06:59.045497"], ["updated_at", "2021-10-27 00:06:59.045497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.052808"], ["updated_at", "2021-10-27 00:06:59.052808"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.053930"], ["updated_at", "2021-10-27 00:06:59.053930"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.054947"], ["updated_at", "2021-10-27 00:06:59.054947"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 148], ["created_at", "2021-10-27 00:06:59.056209"], ["updated_at", "2021-10-27 00:06:59.056209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 148], ["created_at", "2021-10-27 00:06:59.057565"], ["updated_at", "2021-10-27 00:06:59.057565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 150], ["created_at", "2021-10-27 00:06:59.058875"], ["updated_at", "2021-10-27 00:06:59.058875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 148], ["created_at", "2021-10-27 00:06:59.060111"], ["updated_at", "2021-10-27 00:06:59.060111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.065054"], ["updated_at", "2021-10-27 00:06:59.065054"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.066359"], ["updated_at", "2021-10-27 00:06:59.066359"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.067427"], ["updated_at", "2021-10-27 00:06:59.067427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 151], ["created_at", "2021-10-27 00:06:59.068529"], ["updated_at", "2021-10-27 00:06:59.068529"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 151], ["created_at", "2021-10-27 00:06:59.069707"], ["updated_at", "2021-10-27 00:06:59.069707"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 153], ["created_at", "2021-10-27 00:06:59.071024"], ["updated_at", "2021-10-27 00:06:59.071024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 151], ["created_at", "2021-10-27 00:06:59.072240"], ["updated_at", "2021-10-27 00:06:59.072240"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.076164"], ["updated_at", "2021-10-27 00:06:59.076164"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.077224"], ["updated_at", "2021-10-27 00:06:59.077224"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.078252"], ["updated_at", "2021-10-27 00:06:59.078252"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 154], ["created_at", "2021-10-27 00:06:59.079513"], ["updated_at", "2021-10-27 00:06:59.079513"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 154], ["created_at", "2021-10-27 00:06:59.080889"], ["updated_at", "2021-10-27 00:06:59.080889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 156], ["created_at", "2021-10-27 00:06:59.082270"], ["updated_at", "2021-10-27 00:06:59.082270"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 154], ["created_at", "2021-10-27 00:06:59.083769"], ["updated_at", "2021-10-27 00:06:59.083769"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.087096"], ["updated_at", "2021-10-27 00:06:59.087096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.088190"], ["updated_at", "2021-10-27 00:06:59.088190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.089201"], ["updated_at", "2021-10-27 00:06:59.089201"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 157], ["created_at", "2021-10-27 00:06:59.090444"], ["updated_at", "2021-10-27 00:06:59.090444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 157], ["created_at", "2021-10-27 00:06:59.091727"], ["updated_at", "2021-10-27 00:06:59.091727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 159], ["created_at", "2021-10-27 00:06:59.093063"], ["updated_at", "2021-10-27 00:06:59.093063"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 157], ["created_at", "2021-10-27 00:06:59.094357"], ["updated_at", "2021-10-27 00:06:59.094357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.097048"], ["updated_at", "2021-10-27 00:06:59.097048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.098158"], ["updated_at", "2021-10-27 00:06:59.098158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.099233"], ["updated_at", "2021-10-27 00:06:59.099233"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 160], ["created_at", "2021-10-27 00:06:59.100658"], ["updated_at", "2021-10-27 00:06:59.100658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 160], ["created_at", "2021-10-27 00:06:59.101684"], ["updated_at", "2021-10-27 00:06:59.101684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 162], ["created_at", "2021-10-27 00:06:59.102693"], ["updated_at", "2021-10-27 00:06:59.102693"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 160], ["created_at", "2021-10-27 00:06:59.103648"], ["updated_at", "2021-10-27 00:06:59.103648"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.105729"], ["updated_at", "2021-10-27 00:06:59.105729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.106780"], ["updated_at", "2021-10-27 00:06:59.106780"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.107926"], ["updated_at", "2021-10-27 00:06:59.107926"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 163], ["created_at", "2021-10-27 00:06:59.109241"], ["updated_at", "2021-10-27 00:06:59.109241"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 163], ["created_at", "2021-10-27 00:06:59.110755"], ["updated_at", "2021-10-27 00:06:59.110755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 165], ["created_at", "2021-10-27 00:06:59.112085"], ["updated_at", "2021-10-27 00:06:59.112085"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 163], ["created_at", "2021-10-27 00:06:59.113336"], ["updated_at", "2021-10-27 00:06:59.113336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.5ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.117177"], ["updated_at", "2021-10-27 00:06:59.117177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.118020"], ["updated_at", "2021-10-27 00:06:59.118020"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.118786"], ["updated_at", "2021-10-27 00:06:59.118786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 166], ["created_at", "2021-10-27 00:06:59.119791"], ["updated_at", "2021-10-27 00:06:59.119791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 166], ["created_at", "2021-10-27 00:06:59.120840"], ["updated_at", "2021-10-27 00:06:59.120840"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 168], ["created_at", "2021-10-27 00:06:59.122248"], ["updated_at", "2021-10-27 00:06:59.122248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 166], ["created_at", "2021-10-27 00:06:59.123794"], ["updated_at", "2021-10-27 00:06:59.123794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 166], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.126265"], ["updated_at", "2021-10-27 00:06:59.126265"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.127340"], ["updated_at", "2021-10-27 00:06:59.127340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.128369"], ["updated_at", "2021-10-27 00:06:59.128369"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 169], ["created_at", "2021-10-27 00:06:59.129613"], ["updated_at", "2021-10-27 00:06:59.129613"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 169], ["created_at", "2021-10-27 00:06:59.130890"], ["updated_at", "2021-10-27 00:06:59.130890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 171], ["created_at", "2021-10-27 00:06:59.132313"], ["updated_at", "2021-10-27 00:06:59.132313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 169], ["created_at", "2021-10-27 00:06:59.133565"], ["updated_at", "2021-10-27 00:06:59.133565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 169], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.136327"], ["updated_at", "2021-10-27 00:06:59.136327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.137393"], ["updated_at", "2021-10-27 00:06:59.137393"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.138405"], ["updated_at", "2021-10-27 00:06:59.138405"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 172], ["created_at", "2021-10-27 00:06:59.139633"], ["updated_at", "2021-10-27 00:06:59.139633"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 172], ["created_at", "2021-10-27 00:06:59.141066"], ["updated_at", "2021-10-27 00:06:59.141066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 174], ["created_at", "2021-10-27 00:06:59.142425"], ["updated_at", "2021-10-27 00:06:59.142425"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 172], ["created_at", "2021-10-27 00:06:59.143755"], ["updated_at", "2021-10-27 00:06:59.143755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 172], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.146480"], ["updated_at", "2021-10-27 00:06:59.146480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.147344"], ["updated_at", "2021-10-27 00:06:59.147344"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.148190"], ["updated_at", "2021-10-27 00:06:59.148190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 175], ["created_at", "2021-10-27 00:06:59.149344"], ["updated_at", "2021-10-27 00:06:59.149344"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 175], ["created_at", "2021-10-27 00:06:59.150698"], ["updated_at", "2021-10-27 00:06:59.150698"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 177], ["created_at", "2021-10-27 00:06:59.152072"], ["updated_at", "2021-10-27 00:06:59.152072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 175], ["created_at", "2021-10-27 00:06:59.153331"], ["updated_at", "2021-10-27 00:06:59.153331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 175]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.156025"], ["updated_at", "2021-10-27 00:06:59.156025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 00:06:59.157354"], ["updated_at", "2021-10-27 00:06:59.157354"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 00:06:59.158653"], ["updated_at", "2021-10-27 00:06:59.158653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 00:06:59.159864"], ["updated_at", "2021-10-27 00:06:59.159864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 00:06:59.161421"], ["updated_at", "2021-10-27 00:06:59.161421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.164647"], ["updated_at", "2021-10-27 00:06:59.164647"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 00:06:59.165983"], ["updated_at", "2021-10-27 00:06:59.165983"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 00:06:59.167236"], ["updated_at", "2021-10-27 00:06:59.167236"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 00:06:59.168473"], ["updated_at", "2021-10-27 00:06:59.168473"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 00:06:59.169663"], ["updated_at", "2021-10-27 00:06:59.169663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.174637"], ["updated_at", "2021-10-27 00:06:59.174637"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 00:06:59.176187"], ["updated_at", "2021-10-27 00:06:59.176187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 00:06:59.177430"], ["updated_at", "2021-10-27 00:06:59.177430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 00:06:59.178428"], ["updated_at", "2021-10-27 00:06:59.178428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 00:06:59.179517"], ["updated_at", "2021-10-27 00:06:59.179517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.183123"], ["updated_at", "2021-10-27 00:06:59.183123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 00:06:59.184469"], ["updated_at", "2021-10-27 00:06:59.184469"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 00:06:59.185717"], ["updated_at", "2021-10-27 00:06:59.185717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 00:06:59.186902"], ["updated_at", "2021-10-27 00:06:59.186902"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 00:06:59.188076"], ["updated_at", "2021-10-27 00:06:59.188076"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.191081"], ["updated_at", "2021-10-27 00:06:59.191081"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 00:06:59.192404"], ["updated_at", "2021-10-27 00:06:59.192404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 00:06:59.193693"], ["updated_at", "2021-10-27 00:06:59.193693"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 00:06:59.194958"], ["updated_at", "2021-10-27 00:06:59.194958"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 00:06:59.196139"], ["updated_at", "2021-10-27 00:06:59.196139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.198684"], ["updated_at", "2021-10-27 00:06:59.198684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 00:06:59.199895"], ["updated_at", "2021-10-27 00:06:59.199895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 00:06:59.201109"], ["updated_at", "2021-10-27 00:06:59.201109"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 00:06:59.202362"], ["updated_at", "2021-10-27 00:06:59.202362"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 00:06:59.203615"], ["updated_at", "2021-10-27 00:06:59.203615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.205852"], ["updated_at", "2021-10-27 00:06:59.205852"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 00:06:59.207055"], ["updated_at", "2021-10-27 00:06:59.207055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 00:06:59.208270"], ["updated_at", "2021-10-27 00:06:59.208270"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 00:06:59.209445"], ["updated_at", "2021-10-27 00:06:59.209445"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 00:06:59.210622"], ["updated_at", "2021-10-27 00:06:59.210622"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.212425"], ["updated_at", "2021-10-27 00:06:59.212425"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.213422"], ["updated_at", "2021-10-27 00:06:59.213422"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 00:06:59.214845"], ["updated_at", "2021-10-27 00:06:59.214845"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 00:06:59.216334"], ["updated_at", "2021-10-27 00:06:59.216334"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 00:06:59.217799"], ["updated_at", "2021-10-27 00:06:59.217799"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 58], ["created_at", "2021-10-27 00:06:59.219261"], ["updated_at", "2021-10-27 00:06:59.219261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.221387"], ["updated_at", "2021-10-27 00:06:59.221387"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.222342"], ["updated_at", "2021-10-27 00:06:59.222342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 00:06:59.223500"], ["updated_at", "2021-10-27 00:06:59.223500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 00:06:59.224947"], ["updated_at", "2021-10-27 00:06:59.224947"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 00:06:59.226390"], ["updated_at", "2021-10-27 00:06:59.226390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 60], ["created_at", "2021-10-27 00:06:59.227882"], ["updated_at", "2021-10-27 00:06:59.227882"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.232652"], ["updated_at", "2021-10-27 00:06:59.232652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.233735"], ["updated_at", "2021-10-27 00:06:59.233735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 00:06:59.235140"], ["updated_at", "2021-10-27 00:06:59.235140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 00:06:59.236752"], ["updated_at", "2021-10-27 00:06:59.236752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 00:06:59.238399"], ["updated_at", "2021-10-27 00:06:59.238399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 62], ["created_at", "2021-10-27 00:06:59.239541"], ["updated_at", "2021-10-27 00:06:59.239541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.243415"], ["updated_at", "2021-10-27 00:06:59.243415"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.244549"], ["updated_at", "2021-10-27 00:06:59.244549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 00:06:59.245978"], ["updated_at", "2021-10-27 00:06:59.245978"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 00:06:59.247460"], ["updated_at", "2021-10-27 00:06:59.247460"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (1.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 00:06:59.248901"], ["updated_at", "2021-10-27 00:06:59.248901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 64], ["created_at", "2021-10-27 00:06:59.251316"], ["updated_at", "2021-10-27 00:06:59.251316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.254363"], ["updated_at", "2021-10-27 00:06:59.254363"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.255362"], ["updated_at", "2021-10-27 00:06:59.255362"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 00:06:59.256557"], ["updated_at", "2021-10-27 00:06:59.256557"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 00:06:59.257717"], ["updated_at", "2021-10-27 00:06:59.257717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 00:06:59.258827"], ["updated_at", "2021-10-27 00:06:59.258827"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 66], ["created_at", "2021-10-27 00:06:59.260003"], ["updated_at", "2021-10-27 00:06:59.260003"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.262659"], ["updated_at", "2021-10-27 00:06:59.262659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.263708"], ["updated_at", "2021-10-27 00:06:59.263708"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 00:06:59.265078"], ["updated_at", "2021-10-27 00:06:59.265078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 00:06:59.266606"], ["updated_at", "2021-10-27 00:06:59.266606"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 00:06:59.268170"], ["updated_at", "2021-10-27 00:06:59.268170"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Veterinarian Create (0.9ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 68], ["created_at", "2021-10-27 00:06:59.270170"], ["updated_at", "2021-10-27 00:06:59.270170"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.272781"], ["updated_at", "2021-10-27 00:06:59.272781"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.273636"], ["updated_at", "2021-10-27 00:06:59.273636"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 00:06:59.274796"], ["updated_at", "2021-10-27 00:06:59.274796"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 00:06:59.276004"], ["updated_at", "2021-10-27 00:06:59.276004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 00:06:59.277305"], ["updated_at", "2021-10-27 00:06:59.277305"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 70], ["created_at", "2021-10-27 00:06:59.278706"], ["updated_at", "2021-10-27 00:06:59.278706"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (1.0ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.281765"], ["updated_at", "2021-10-27 00:06:59.281765"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.282780"], ["updated_at", "2021-10-27 00:06:59.282780"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 00:06:59.284139"], ["updated_at", "2021-10-27 00:06:59.284139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 00:06:59.285400"], ["updated_at", "2021-10-27 00:06:59.285400"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 00:06:59.286599"], ["updated_at", "2021-10-27 00:06:59.286599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 72], ["created_at", "2021-10-27 00:06:59.287795"], ["updated_at", "2021-10-27 00:06:59.287795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 71]]
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 72]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.290552"], ["updated_at", "2021-10-27 00:06:59.290552"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.291481"], ["updated_at", "2021-10-27 00:06:59.291481"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 00:06:59.292783"], ["updated_at", "2021-10-27 00:06:59.292783"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 00:06:59.294210"], ["updated_at", "2021-10-27 00:06:59.294210"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 00:06:59.295578"], ["updated_at", "2021-10-27 00:06:59.295578"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 74], ["created_at", "2021-10-27 00:06:59.296904"], ["updated_at", "2021-10-27 00:06:59.296904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 73], ["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.299060"], ["updated_at", "2021-10-27 00:06:59.299060"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.299901"], ["updated_at", "2021-10-27 00:06:59.299901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 00:06:59.301117"], ["updated_at", "2021-10-27 00:06:59.301117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 00:06:59.302392"], ["updated_at", "2021-10-27 00:06:59.302392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 00:06:59.303618"], ["updated_at", "2021-10-27 00:06:59.303618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 76], ["created_at", "2021-10-27 00:06:59.304826"], ["updated_at", "2021-10-27 00:06:59.304826"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 75], ["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.306688"], ["updated_at", "2021-10-27 00:06:59.306688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.307493"], ["updated_at", "2021-10-27 00:06:59.307493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 00:06:59.308652"], ["updated_at", "2021-10-27 00:06:59.308652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 00:06:59.309889"], ["updated_at", "2021-10-27 00:06:59.309889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 00:06:59.311455"], ["updated_at", "2021-10-27 00:06:59.311455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 78], ["created_at", "2021-10-27 00:06:59.314511"], ["updated_at", "2021-10-27 00:06:59.314511"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)  [["veterinary_office_id", 77], ["on_call", true]]
 (0.1ms)  ROLLBACK
 (22.2ms)  DROP DATABASE IF EXISTS "adopt_dont_shop_test"
 (112.4ms)  CREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'
SQL (10.3ms)  CREATE EXTENSION IF NOT EXISTS "plpgsql"
 (0.9ms)  DROP TABLE IF EXISTS "application_pets" CASCADE
 (6.7ms)  CREATE TABLE "application_pets" ("id" bigserial primary key, "pet_id" bigint, "application_id" bigint, "status" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (1.1ms)  CREATE  INDEX  "index_application_pets_on_application_id" ON "application_pets"  ("application_id")
 (1.6ms)  CREATE  INDEX  "index_application_pets_on_pet_id" ON "application_pets"  ("pet_id")
 (2.9ms)  DROP TABLE IF EXISTS "applications" CASCADE
 (3.2ms)  CREATE TABLE "applications" ("id" bigserial primary key, "applicant_name" character varying, "street_address" character varying, "city" character varying, "state" character varying, "zipcode" character varying, "application_status" character varying, "why" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.2ms)  DROP TABLE IF EXISTS "pets" CASCADE
 (2.9ms)  CREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.9ms)  CREATE  INDEX  "index_pets_on_shelter_id" ON "pets"  ("shelter_id")
 (0.3ms)  DROP TABLE IF EXISTS "shelters" CASCADE
 (3.3ms)  CREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.4ms)  DROP TABLE IF EXISTS "veterinarians" CASCADE
 (3.3ms)  CREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.6ms)  CREATE  INDEX  "index_veterinarians_on_veterinary_office_id" ON "veterinarians"  ("veterinary_office_id")
 (0.1ms)  DROP TABLE IF EXISTS "veterinary_offices" CASCADE
 (3.8ms)  CREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (3.1ms)  ALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_6ac8983e3b"

FOREIGN KEY (“application_id”)

REFERENCES "applications" ("id")



 (2.2ms)  ALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_412710cd26"

FOREIGN KEY (“pet_id”)

REFERENCES "pets" ("id")



 (1.5ms)  ALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"

FOREIGN KEY (“shelter_id”)

REFERENCES "shelters" ("id")



 (1.4ms)  ALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"

FOREIGN KEY (“veterinary_office_id”)

REFERENCES "veterinary_offices" ("id")



 (3.0ms)  CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
 (0.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  INSERT INTO "schema_migrations" (version) VALUES (20211024000652)
 (0.2ms)  INSERT INTO "schema_migrations" (version) VALUES

(20210212235502), (20210213001632), (20210212235735), (20211023230147), (20210213001717);



 (5.4ms)  CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
ActiveRecord::InternalMetadata Load (0.3ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
ActiveRecord::InternalMetadata Create (0.3ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"  [["key", "environment"], ["value", "test"], ["created_at", "2021-10-27 01:37:33.685195"], ["updated_at", "2021-10-27 01:37:33.685195"]]
 (0.1ms)  COMMIT
ActiveRecord::InternalMetadata Load (0.2ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
 (0.1ms)  COMMIT
 (0.8ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:37:33.770984"], ["updated_at", "2021-10-27 01:37:33.770984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 1], ["created_at", "2021-10-27 01:37:33.808488"], ["updated_at", "2021-10-27 01:37:33.808488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 1], ["created_at", "2021-10-27 01:37:33.814480"], ["updated_at", "2021-10-27 01:37:33.814480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 1], ["created_at", "2021-10-27 01:37:33.816002"], ["updated_at", "2021-10-27 01:37:33.816002"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:37:33.832512"], ["updated_at", "2021-10-27 01:37:33.832512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 1], ["application_id", 1], ["created_at", "2021-10-27 01:37:33.851991"], ["updated_at", "2021-10-27 01:37:33.851991"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 2], ["application_id", 1], ["created_at", "2021-10-27 01:37:33.853859"], ["updated_at", "2021-10-27 01:37:33.853859"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/1” for 127.0.0.1 at 2021-10-26 19:37:33 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"1"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 1)
Rendered applications/show.html.erb within layouts/application (5.8ms)

Completed 200 OK in 102ms (Views: 93.6ms | ActiveRecord: 2.4ms) Started GET “/pets/1” for 127.0.0.1 at 2021-10-26 19:37:33 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"1"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/1” for 127.0.0.1 at 2021-10-26 19:37:33 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"1"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 1)
Rendered applications/show.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.9ms) Started GET “/pets/2” for 127.0.0.1 at 2021-10-26 19:37:33 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"2"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:37:34.044504"], ["updated_at", "2021-10-27 01:37:34.044504"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 2], ["created_at", "2021-10-27 01:37:34.045908"], ["updated_at", "2021-10-27 01:37:34.045908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 2], ["created_at", "2021-10-27 01:37:34.047288"], ["updated_at", "2021-10-27 01:37:34.047288"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 2], ["created_at", "2021-10-27 01:37:34.048723"], ["updated_at", "2021-10-27 01:37:34.048723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:37:34.049628"], ["updated_at", "2021-10-27 01:37:34.049628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/2” for 127.0.0.1 at 2021-10-26 19:37:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"2"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 2)
Rendered applications/show.html.erb within layouts/application (0.9ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:37:34.056185"], ["updated_at", "2021-10-27 01:37:34.056185"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 3], ["created_at", "2021-10-27 01:37:34.057333"], ["updated_at", "2021-10-27 01:37:34.057333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:37:34.058231"], ["updated_at", "2021-10-27 01:37:34.058231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/3” for 127.0.0.1 at 2021-10-26 19:37:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"3"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 3)
Rendered applications/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:37:34.064525"], ["updated_at", "2021-10-27 01:37:34.064525"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 4], ["created_at", "2021-10-27 01:37:34.065776"], ["updated_at", "2021-10-27 01:37:34.065776"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 4], ["created_at", "2021-10-27 01:37:34.066889"], ["updated_at", "2021-10-27 01:37:34.066889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 4], ["created_at", "2021-10-27 01:37:34.068161"], ["updated_at", "2021-10-27 01:37:34.068161"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:37:34.069044"], ["updated_at", "2021-10-27 01:37:34.069044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/4” for 127.0.0.1 at 2021-10-26 19:37:34 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"4"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 4)
Rendered applications/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.0ms)

 (0.2ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:43:22.673192"], ["updated_at", "2021-10-27 01:43:22.673192"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 5], ["created_at", "2021-10-27 01:43:22.706789"], ["updated_at", "2021-10-27 01:43:22.706789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 5], ["created_at", "2021-10-27 01:43:22.709290"], ["updated_at", "2021-10-27 01:43:22.709290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 5], ["created_at", "2021-10-27 01:43:22.710475"], ["updated_at", "2021-10-27 01:43:22.710475"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:43:22.727067"], ["updated_at", "2021-10-27 01:43:22.727067"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 11], ["application_id", 5], ["created_at", "2021-10-27 01:43:22.739145"], ["updated_at", "2021-10-27 01:43:22.739145"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 12], ["application_id", 5], ["created_at", "2021-10-27 01:43:22.740737"], ["updated_at", "2021-10-27 01:43:22.740737"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/5” for 127.0.0.1 at 2021-10-26 19:43:22 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"5"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.9ms)

Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.6ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:43:22.792150"], ["updated_at", "2021-10-27 01:43:22.792150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 6], ["created_at", "2021-10-27 01:43:22.793971"], ["updated_at", "2021-10-27 01:43:22.793971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 6], ["created_at", "2021-10-27 01:43:22.795645"], ["updated_at", "2021-10-27 01:43:22.795645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 6], ["created_at", "2021-10-27 01:43:22.797215"], ["updated_at", "2021-10-27 01:43:22.797215"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:43:22.798492"], ["updated_at", "2021-10-27 01:43:22.798492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/6” for 127.0.0.1 at 2021-10-26 19:43:22 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"6"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.6ms)

Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:43:22.802873"], ["updated_at", "2021-10-27 01:43:22.802873"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 7], ["created_at", "2021-10-27 01:43:22.804235"], ["updated_at", "2021-10-27 01:43:22.804235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:43:22.805405"], ["updated_at", "2021-10-27 01:43:22.805405"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/7” for 127.0.0.1 at 2021-10-26 19:43:22 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"7"}
Application Load (0.6ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.6ms)

Completed 500 Internal Server Error in 2ms (ActiveRecord: 1.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:43:22.810385"], ["updated_at", "2021-10-27 01:43:22.810385"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 8], ["created_at", "2021-10-27 01:43:22.811929"], ["updated_at", "2021-10-27 01:43:22.811929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 8], ["created_at", "2021-10-27 01:43:22.813094"], ["updated_at", "2021-10-27 01:43:22.813094"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 8], ["created_at", "2021-10-27 01:43:22.814103"], ["updated_at", "2021-10-27 01:43:22.814103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:43:22.815020"], ["updated_at", "2021-10-27 01:43:22.815020"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/8” for 127.0.0.1 at 2021-10-26 19:43:22 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"8"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.6ms)

Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (1.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:44:37.007986"], ["updated_at", "2021-10-27 01:44:37.007986"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 9], ["created_at", "2021-10-27 01:44:37.042069"], ["updated_at", "2021-10-27 01:44:37.042069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 9], ["created_at", "2021-10-27 01:44:37.044310"], ["updated_at", "2021-10-27 01:44:37.044310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 9], ["created_at", "2021-10-27 01:44:37.045508"], ["updated_at", "2021-10-27 01:44:37.045508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:44:37.062108"], ["updated_at", "2021-10-27 01:44:37.062108"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 21], ["application_id", 9], ["created_at", "2021-10-27 01:44:37.079542"], ["updated_at", "2021-10-27 01:44:37.079542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 22], ["application_id", 9], ["created_at", "2021-10-27 01:44:37.082103"], ["updated_at", "2021-10-27 01:44:37.082103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/9” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"9"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 9)
Rendered applications/show.html.erb within layouts/application (5.0ms)

Completed 200 OK in 92ms (Views: 85.0ms | ActiveRecord: 1.9ms) Started GET “/pets/21” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"21"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/9” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"9"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 9)
Rendered applications/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 1.3ms) Started GET “/pets/22” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"22"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 22], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.5ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:44:37.264956"], ["updated_at", "2021-10-27 01:44:37.264956"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 10], ["created_at", "2021-10-27 01:44:37.266638"], ["updated_at", "2021-10-27 01:44:37.266638"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 10], ["created_at", "2021-10-27 01:44:37.268033"], ["updated_at", "2021-10-27 01:44:37.268033"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 10], ["created_at", "2021-10-27 01:44:37.269055"], ["updated_at", "2021-10-27 01:44:37.269055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:44:37.270376"], ["updated_at", "2021-10-27 01:44:37.270376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/10” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"10"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 10)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:44:37.277468"], ["updated_at", "2021-10-27 01:44:37.277468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 11], ["created_at", "2021-10-27 01:44:37.278939"], ["updated_at", "2021-10-27 01:44:37.278939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:44:37.279933"], ["updated_at", "2021-10-27 01:44:37.279933"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/11” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"11"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 11)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 1.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:44:37.286034"], ["updated_at", "2021-10-27 01:44:37.286034"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 12], ["created_at", "2021-10-27 01:44:37.287419"], ["updated_at", "2021-10-27 01:44:37.287419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 12], ["created_at", "2021-10-27 01:44:37.288451"], ["updated_at", "2021-10-27 01:44:37.288451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 12], ["created_at", "2021-10-27 01:44:37.289513"], ["updated_at", "2021-10-27 01:44:37.289513"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:44:37.290733"], ["updated_at", "2021-10-27 01:44:37.290733"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/12” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"12"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 12)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.1ms)

 (0.1ms)  ROLLBACK
 (1.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:07:30.208815"], ["updated_at", "2021-10-27 02:07:30.208815"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 13], ["created_at", "2021-10-27 02:07:30.240423"], ["updated_at", "2021-10-27 02:07:30.240423"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 13], ["created_at", "2021-10-27 02:07:30.242651"], ["updated_at", "2021-10-27 02:07:30.242651"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 13], ["created_at", "2021-10-27 02:07:30.243814"], ["updated_at", "2021-10-27 02:07:30.243814"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:07:30.261242"], ["updated_at", "2021-10-27 02:07:30.261242"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 31], ["application_id", 13], ["created_at", "2021-10-27 02:07:30.273113"], ["updated_at", "2021-10-27 02:07:30.273113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 32], ["application_id", 13], ["created_at", "2021-10-27 02:07:30.274800"], ["updated_at", "2021-10-27 02:07:30.274800"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/13” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"13"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 13)
Rendered applications/show.html.erb within layouts/application (5.4ms)

Completed 200 OK in 93ms (Views: 85.4ms | ActiveRecord: 2.2ms) Started GET “/pets/31” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"31"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/13” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"13"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 13)
Rendered applications/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 1.1ms) Started GET “/pets/32” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"32"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.5ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:07:30.452651"], ["updated_at", "2021-10-27 02:07:30.452651"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 14], ["created_at", "2021-10-27 02:07:30.453997"], ["updated_at", "2021-10-27 02:07:30.453997"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 14], ["created_at", "2021-10-27 02:07:30.455497"], ["updated_at", "2021-10-27 02:07:30.455497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 14], ["created_at", "2021-10-27 02:07:30.456718"], ["updated_at", "2021-10-27 02:07:30.456718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:07:30.457588"], ["updated_at", "2021-10-27 02:07:30.457588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/14” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"14"}
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 14)
Rendered applications/show.html.erb within layouts/application (0.9ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:07:30.464238"], ["updated_at", "2021-10-27 02:07:30.464238"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 15], ["created_at", "2021-10-27 02:07:30.465376"], ["updated_at", "2021-10-27 02:07:30.465376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:07:30.466320"], ["updated_at", "2021-10-27 02:07:30.466320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/15” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"15"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 15], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 15], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 15)
Rendered applications/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:07:30.472016"], ["updated_at", "2021-10-27 02:07:30.472016"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 16], ["created_at", "2021-10-27 02:07:30.473209"], ["updated_at", "2021-10-27 02:07:30.473209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 16], ["created_at", "2021-10-27 02:07:30.474331"], ["updated_at", "2021-10-27 02:07:30.474331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 16], ["created_at", "2021-10-27 02:07:30.475539"], ["updated_at", "2021-10-27 02:07:30.475539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:07:30.476503"], ["updated_at", "2021-10-27 02:07:30.476503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/16” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"16"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 16], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 16], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 16)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.0ms)

 (0.1ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:14.313696"], ["updated_at", "2021-10-27 02:08:14.313696"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 17], ["created_at", "2021-10-27 02:08:14.344677"], ["updated_at", "2021-10-27 02:08:14.344677"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 17], ["created_at", "2021-10-27 02:08:14.346213"], ["updated_at", "2021-10-27 02:08:14.346213"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 17], ["created_at", "2021-10-27 02:08:14.347178"], ["updated_at", "2021-10-27 02:08:14.347178"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:14.362398"], ["updated_at", "2021-10-27 02:08:14.362398"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 41], ["application_id", 17], ["created_at", "2021-10-27 02:08:14.374203"], ["updated_at", "2021-10-27 02:08:14.374203"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 42], ["application_id", 17], ["created_at", "2021-10-27 02:08:14.375820"], ["updated_at", "2021-10-27 02:08:14.375820"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/17” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"17"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 17)
Rendered applications/show.html.erb within layouts/application (5.9ms)

Completed 200 OK in 90ms (Views: 81.1ms | ActiveRecord: 3.0ms) Started GET “/pets/41” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"41"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/17” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"17"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 17)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.1ms) Started GET “/pets/42” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"42"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:14.542048"], ["updated_at", "2021-10-27 02:08:14.542048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 18], ["created_at", "2021-10-27 02:08:14.543453"], ["updated_at", "2021-10-27 02:08:14.543453"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 18], ["created_at", "2021-10-27 02:08:14.544670"], ["updated_at", "2021-10-27 02:08:14.544670"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 18], ["created_at", "2021-10-27 02:08:14.546062"], ["updated_at", "2021-10-27 02:08:14.546062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:14.547332"], ["updated_at", "2021-10-27 02:08:14.547332"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/18” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"18"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 18], ["LIMIT", 1]]
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 18], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 18)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.8ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:14.564097"], ["updated_at", "2021-10-27 02:08:14.564097"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 19], ["created_at", "2021-10-27 02:08:14.567362"], ["updated_at", "2021-10-27 02:08:14.567362"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:14.568835"], ["updated_at", "2021-10-27 02:08:14.568835"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/19” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"19"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 19], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 19], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 19)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.8ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:14.582218"], ["updated_at", "2021-10-27 02:08:14.582218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 20], ["created_at", "2021-10-27 02:08:14.583891"], ["updated_at", "2021-10-27 02:08:14.583891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 20], ["created_at", "2021-10-27 02:08:14.585142"], ["updated_at", "2021-10-27 02:08:14.585142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 20], ["created_at", "2021-10-27 02:08:14.586388"], ["updated_at", "2021-10-27 02:08:14.586388"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:14.587448"], ["updated_at", "2021-10-27 02:08:14.587448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/20” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"20"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 20], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 20], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 20)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.9ms)

 (0.1ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:51.194322"], ["updated_at", "2021-10-27 02:08:51.194322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 21], ["created_at", "2021-10-27 02:08:51.228069"], ["updated_at", "2021-10-27 02:08:51.228069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 21], ["created_at", "2021-10-27 02:08:51.230277"], ["updated_at", "2021-10-27 02:08:51.230277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 21], ["created_at", "2021-10-27 02:08:51.231505"], ["updated_at", "2021-10-27 02:08:51.231505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:51.247168"], ["updated_at", "2021-10-27 02:08:51.247168"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 51], ["application_id", 21], ["created_at", "2021-10-27 02:08:51.264485"], ["updated_at", "2021-10-27 02:08:51.264485"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 52], ["application_id", 21], ["created_at", "2021-10-27 02:08:51.266231"], ["updated_at", "2021-10-27 02:08:51.266231"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/21” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"21"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 21)
Rendered applications/show.html.erb within layouts/application (6.0ms)

Completed 200 OK in 90ms (Views: 82.0ms | ActiveRecord: 2.7ms) Started GET “/pets/51” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"51"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/21” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"21"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 21)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 1.7ms) Started GET “/pets/52” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"52"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:51.432728"], ["updated_at", "2021-10-27 02:08:51.432728"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 22], ["created_at", "2021-10-27 02:08:51.434412"], ["updated_at", "2021-10-27 02:08:51.434412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 22], ["created_at", "2021-10-27 02:08:51.435975"], ["updated_at", "2021-10-27 02:08:51.435975"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 22], ["created_at", "2021-10-27 02:08:51.437382"], ["updated_at", "2021-10-27 02:08:51.437382"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:51.438890"], ["updated_at", "2021-10-27 02:08:51.438890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/22” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"22"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 22], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 22], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 22)
Rendered applications/show.html.erb within layouts/application (4.5ms)

Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.9ms) Started GET “/applications/22?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"22"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 22], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 22], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 22)
Pet Load (1.7ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (6.5ms)

Completed 200 OK in 13ms (Views: 5.6ms | ActiveRecord: 3.0ms)

 (4.2ms)  ROLLBACK
 (0.3ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:51.505470"], ["updated_at", "2021-10-27 02:08:51.505470"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 23], ["created_at", "2021-10-27 02:08:51.509822"], ["updated_at", "2021-10-27 02:08:51.509822"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (4.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:51.513229"], ["updated_at", "2021-10-27 02:08:51.513229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/23” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"23"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (3.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 23)
Rendered applications/show.html.erb within layouts/application (5.7ms)

Completed 200 OK in 13ms (Views: 4.1ms | ActiveRecord: 4.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:51.544141"], ["updated_at", "2021-10-27 02:08:51.544141"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 24], ["created_at", "2021-10-27 02:08:51.547831"], ["updated_at", "2021-10-27 02:08:51.547831"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 24], ["created_at", "2021-10-27 02:08:51.555497"], ["updated_at", "2021-10-27 02:08:51.555497"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 24], ["created_at", "2021-10-27 02:08:51.559267"], ["updated_at", "2021-10-27 02:08:51.559267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:51.562625"], ["updated_at", "2021-10-27 02:08:51.562625"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/24” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"24"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 24], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 24], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 24)
Rendered applications/show.html.erb within layouts/application (1.7ms)

Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 1.4ms)

 (0.3ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:09:40.611727"], ["updated_at", "2021-10-27 02:09:40.611727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 25], ["created_at", "2021-10-27 02:09:40.644111"], ["updated_at", "2021-10-27 02:09:40.644111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 25], ["created_at", "2021-10-27 02:09:40.646083"], ["updated_at", "2021-10-27 02:09:40.646083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 25], ["created_at", "2021-10-27 02:09:40.647431"], ["updated_at", "2021-10-27 02:09:40.647431"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:09:40.661732"], ["updated_at", "2021-10-27 02:09:40.661732"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 61], ["application_id", 25], ["created_at", "2021-10-27 02:09:40.673575"], ["updated_at", "2021-10-27 02:09:40.673575"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 62], ["application_id", 25], ["created_at", "2021-10-27 02:09:40.675199"], ["updated_at", "2021-10-27 02:09:40.675199"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/25” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"25"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 25], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 25], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 25)
Rendered applications/show.html.erb within layouts/application (5.4ms)

Completed 200 OK in 90ms (Views: 81.7ms | ActiveRecord: 2.4ms) Started GET “/pets/61” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"61"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 25], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.6ms) Started GET “/applications/25” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"25"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 25], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 25], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 25)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.3ms) Started GET “/pets/62” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"62"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 25], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:09:40.841024"], ["updated_at", "2021-10-27 02:09:40.841024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 26], ["created_at", "2021-10-27 02:09:40.842418"], ["updated_at", "2021-10-27 02:09:40.842418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 26], ["created_at", "2021-10-27 02:09:40.843563"], ["updated_at", "2021-10-27 02:09:40.843563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 26], ["created_at", "2021-10-27 02:09:40.844600"], ["updated_at", "2021-10-27 02:09:40.844600"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:09:40.845854"], ["updated_at", "2021-10-27 02:09:40.845854"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/26” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"26"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 26], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 26], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 26)
Rendered applications/show.html.erb within layouts/application (4.0ms)

Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 1.7ms) Started GET “/applications/26?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"26"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 26], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 26], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 26)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (4.0ms)

Completed 200 OK in 10ms (Views: 4.4ms | ActiveRecord: 1.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:09:40.891837"], ["updated_at", "2021-10-27 02:09:40.891837"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 27], ["created_at", "2021-10-27 02:09:40.893631"], ["updated_at", "2021-10-27 02:09:40.893631"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:09:40.895067"], ["updated_at", "2021-10-27 02:09:40.895067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/27” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"27"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 27], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 27], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 27)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.0ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:09:40.909450"], ["updated_at", "2021-10-27 02:09:40.909450"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 28], ["created_at", "2021-10-27 02:09:40.911345"], ["updated_at", "2021-10-27 02:09:40.911345"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 28], ["created_at", "2021-10-27 02:09:40.913340"], ["updated_at", "2021-10-27 02:09:40.913340"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (4.4ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 28], ["created_at", "2021-10-27 02:09:40.920122"], ["updated_at", "2021-10-27 02:09:40.920122"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:09:40.921908"], ["updated_at", "2021-10-27 02:09:40.921908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/28” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"28"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 28], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 28], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (4.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 28)
Rendered applications/show.html.erb within layouts/application (6.4ms)

Completed 200 OK in 9ms (Views: 3.2ms | ActiveRecord: 5.2ms) Started GET “/applications/28?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"28"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 28], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 28], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 28)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.6ms)

Completed 200 OK in 6ms (Views: 3.0ms | ActiveRecord: 2.0ms)

 (0.5ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:12.386103"], ["updated_at", "2021-10-27 02:10:12.386103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 29], ["created_at", "2021-10-27 02:10:12.419112"], ["updated_at", "2021-10-27 02:10:12.419112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 29], ["created_at", "2021-10-27 02:10:12.421464"], ["updated_at", "2021-10-27 02:10:12.421464"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 29], ["created_at", "2021-10-27 02:10:12.422757"], ["updated_at", "2021-10-27 02:10:12.422757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:12.441737"], ["updated_at", "2021-10-27 02:10:12.441737"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 71], ["application_id", 29], ["created_at", "2021-10-27 02:10:12.459435"], ["updated_at", "2021-10-27 02:10:12.459435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 72], ["application_id", 29], ["created_at", "2021-10-27 02:10:12.461861"], ["updated_at", "2021-10-27 02:10:12.461861"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/29” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"29"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 29)
Rendered applications/show.html.erb within layouts/application (6.3ms)

Completed 200 OK in 91ms (Views: 82.1ms | ActiveRecord: 3.1ms) Started GET “/pets/71” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"71"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/29” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"29"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 29)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 1.3ms) Started GET “/pets/72” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"72"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:12.631561"], ["updated_at", "2021-10-27 02:10:12.631561"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 30], ["created_at", "2021-10-27 02:10:12.633127"], ["updated_at", "2021-10-27 02:10:12.633127"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 30], ["created_at", "2021-10-27 02:10:12.634689"], ["updated_at", "2021-10-27 02:10:12.634689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 30], ["created_at", "2021-10-27 02:10:12.636074"], ["updated_at", "2021-10-27 02:10:12.636074"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:12.637361"], ["updated_at", "2021-10-27 02:10:12.637361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/30” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"30"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 30], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 30], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 30)
Rendered applications/show.html.erb within layouts/application (3.6ms)

Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.9ms) Started GET “/applications/30?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"30"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 30], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 30], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 30)
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.1ms)

Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 2.1ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:12.670575"], ["updated_at", "2021-10-27 02:10:12.670575"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 31], ["created_at", "2021-10-27 02:10:12.674073"], ["updated_at", "2021-10-27 02:10:12.674073"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:12.675107"], ["updated_at", "2021-10-27 02:10:12.675107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/31” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"31"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 31)
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 5ms (Views: 2.4ms | ActiveRecord: 1.5ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:12.687756"], ["updated_at", "2021-10-27 02:10:12.687756"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 32], ["created_at", "2021-10-27 02:10:12.690129"], ["updated_at", "2021-10-27 02:10:12.690129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 32], ["created_at", "2021-10-27 02:10:12.692183"], ["updated_at", "2021-10-27 02:10:12.692183"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 32], ["created_at", "2021-10-27 02:10:12.694113"], ["updated_at", "2021-10-27 02:10:12.694113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:12.695650"], ["updated_at", "2021-10-27 02:10:12.695650"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/32” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"32"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 32)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 1.0ms) Started GET “/applications/32?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"32"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.2ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 32)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (2.8ms)

Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 2.1ms) Started POST “/application_pets?app_id=32&pet_id=80” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"32", "pet_id"=>"80"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
ApplicationPet Create (0.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 80], ["application_id", 32], ["created_at", "2021-10-27 02:10:12.730606"], ["updated_at", "2021-10-27 02:10:12.730606"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/32 Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET “/applications/32” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"32"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 32)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 1.0ms)

 (0.3ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:39.357054"], ["updated_at", "2021-10-27 02:10:39.357054"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 33], ["created_at", "2021-10-27 02:10:39.382759"], ["updated_at", "2021-10-27 02:10:39.382759"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 33], ["created_at", "2021-10-27 02:10:39.384488"], ["updated_at", "2021-10-27 02:10:39.384488"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 33], ["created_at", "2021-10-27 02:10:39.385618"], ["updated_at", "2021-10-27 02:10:39.385618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:39.410717"], ["updated_at", "2021-10-27 02:10:39.410717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 81], ["application_id", 33], ["created_at", "2021-10-27 02:10:39.438851"], ["updated_at", "2021-10-27 02:10:39.438851"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 82], ["application_id", 33], ["created_at", "2021-10-27 02:10:39.442943"], ["updated_at", "2021-10-27 02:10:39.442943"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/33” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"33"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 33)
Rendered applications/show.html.erb within layouts/application (9.5ms)

Completed 200 OK in 101ms (Views: 89.9ms | ActiveRecord: 4.5ms) Started GET “/pets/81” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"81"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.6ms) Started GET “/applications/33” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"33"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 33)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 1.1ms) Started GET “/pets/82” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"82"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:39.610030"], ["updated_at", "2021-10-27 02:10:39.610030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 34], ["created_at", "2021-10-27 02:10:39.611725"], ["updated_at", "2021-10-27 02:10:39.611725"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 34], ["created_at", "2021-10-27 02:10:39.613290"], ["updated_at", "2021-10-27 02:10:39.613290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 34], ["created_at", "2021-10-27 02:10:39.614669"], ["updated_at", "2021-10-27 02:10:39.614669"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:39.616048"], ["updated_at", "2021-10-27 02:10:39.616048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/34” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"34"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 34)
Rendered applications/show.html.erb within layouts/application (4.0ms)

Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 1.7ms) Started GET “/applications/34?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"34"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 34)
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.0ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 2.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:39.641427"], ["updated_at", "2021-10-27 02:10:39.641427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 35], ["created_at", "2021-10-27 02:10:39.642795"], ["updated_at", "2021-10-27 02:10:39.642795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:39.643855"], ["updated_at", "2021-10-27 02:10:39.643855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/35” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"35"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 35)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:39.650326"], ["updated_at", "2021-10-27 02:10:39.650326"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 36], ["created_at", "2021-10-27 02:10:39.651702"], ["updated_at", "2021-10-27 02:10:39.651702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 36], ["created_at", "2021-10-27 02:10:39.653027"], ["updated_at", "2021-10-27 02:10:39.653027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 36], ["created_at", "2021-10-27 02:10:39.654310"], ["updated_at", "2021-10-27 02:10:39.654310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:39.655772"], ["updated_at", "2021-10-27 02:10:39.655772"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/36” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"36"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 36)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.7ms) Started GET “/applications/36?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"36"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 36)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (2.1ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.6ms) Started POST “/application_pets?app_id=36&pet_id=90” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"36", "pet_id"=>"90"}
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 90], ["application_id", 36], ["created_at", "2021-10-27 02:10:39.674435"], ["updated_at", "2021-10-27 02:10:39.674435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/36 Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET “/applications/36” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"36"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 36)
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.2ms)

 (0.2ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:11:25.045810"], ["updated_at", "2021-10-27 02:11:25.045810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 37], ["created_at", "2021-10-27 02:11:25.078839"], ["updated_at", "2021-10-27 02:11:25.078839"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 37], ["created_at", "2021-10-27 02:11:25.081157"], ["updated_at", "2021-10-27 02:11:25.081157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 37], ["created_at", "2021-10-27 02:11:25.082466"], ["updated_at", "2021-10-27 02:11:25.082466"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:11:25.098501"], ["updated_at", "2021-10-27 02:11:25.098501"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 91], ["application_id", 37], ["created_at", "2021-10-27 02:11:25.116685"], ["updated_at", "2021-10-27 02:11:25.116685"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 92], ["application_id", 37], ["created_at", "2021-10-27 02:11:25.118439"], ["updated_at", "2021-10-27 02:11:25.118439"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/37” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"37"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 37)
Rendered applications/show.html.erb within layouts/application (5.6ms)

Completed 200 OK in 90ms (Views: 82.2ms | ActiveRecord: 2.4ms) Started GET “/pets/91” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"91"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 91], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/37” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"37"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 37)
Rendered applications/show.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 1.0ms) Started GET “/pets/92” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"92"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 92], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.5ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:11:25.284803"], ["updated_at", "2021-10-27 02:11:25.284803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 38], ["created_at", "2021-10-27 02:11:25.286372"], ["updated_at", "2021-10-27 02:11:25.286372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 38], ["created_at", "2021-10-27 02:11:25.287654"], ["updated_at", "2021-10-27 02:11:25.287654"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 38], ["created_at", "2021-10-27 02:11:25.288890"], ["updated_at", "2021-10-27 02:11:25.288890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:11:25.290081"], ["updated_at", "2021-10-27 02:11:25.290081"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/38” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"38"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 38)
Rendered applications/show.html.erb within layouts/application (3.6ms)

Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 1.0ms) Started GET “/applications/38?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"38"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 38)
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.0ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 2.1ms)

 (0.2ms)  ROLLBACK
 (0.4ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:11:25.323863"], ["updated_at", "2021-10-27 02:11:25.323863"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 39], ["created_at", "2021-10-27 02:11:25.326455"], ["updated_at", "2021-10-27 02:11:25.326455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:11:25.328006"], ["updated_at", "2021-10-27 02:11:25.328006"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/39” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"39"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 39)
Rendered applications/show.html.erb within layouts/application (2.7ms)

Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 1.5ms) Started GET “/applications/39?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"39"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 39)
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.5ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.6ms) Started POST “/application_pets?app_id=39&pet_id=97” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"39", "pet_id"=>"97"}
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 97], ["application_id", 39], ["created_at", "2021-10-27 02:11:25.361555"], ["updated_at", "2021-10-27 02:11:25.361555"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/39 Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET “/applications/39” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"39"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 39)
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 1.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:11:25.371665"], ["updated_at", "2021-10-27 02:11:25.371665"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 40], ["created_at", "2021-10-27 02:11:25.373647"], ["updated_at", "2021-10-27 02:11:25.373647"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 40], ["created_at", "2021-10-27 02:11:25.375475"], ["updated_at", "2021-10-27 02:11:25.375475"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 40], ["created_at", "2021-10-27 02:11:25.377190"], ["updated_at", "2021-10-27 02:11:25.377190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:11:25.379000"], ["updated_at", "2021-10-27 02:11:25.379000"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/40” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"40"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Application Load (0.7ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)
Rendered applications/show.html.erb within layouts/application (2.2ms)

Completed 200 OK in 5ms (Views: 2.2ms | ActiveRecord: 1.9ms) Started GET “/applications/40?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"40"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (2.5ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.7ms) Started POST “/application_pets?app_id=40&pet_id=100” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"40", "pet_id"=>"100"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 100], ["application_id", 40], ["created_at", "2021-10-27 02:11:25.406689"], ["updated_at", "2021-10-27 02:11:25.406689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/40 Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/applications/40” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"40"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)
Rendered applications/show.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.2ms) Started PATCH “/applications/40” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#update as HTML

Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"40"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.6ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "Pending"], ["updated_at", "2021-10-27 02:11:25.424544"], ["id", 40]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/40 Completed 302 Found in 2ms (ActiveRecord: 1.1ms) Started GET “/applications/40” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"40"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.4ms)

 (0.2ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:03.732617"], ["updated_at", "2021-10-27 02:13:03.732617"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 41], ["created_at", "2021-10-27 02:13:03.762686"], ["updated_at", "2021-10-27 02:13:03.762686"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 41], ["created_at", "2021-10-27 02:13:03.764386"], ["updated_at", "2021-10-27 02:13:03.764386"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 41], ["created_at", "2021-10-27 02:13:03.765404"], ["updated_at", "2021-10-27 02:13:03.765404"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:03.776013"], ["updated_at", "2021-10-27 02:13:03.776013"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 101], ["application_id", 41], ["created_at", "2021-10-27 02:13:03.787429"], ["updated_at", "2021-10-27 02:13:03.787429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 102], ["application_id", 41], ["created_at", "2021-10-27 02:13:03.790192"], ["updated_at", "2021-10-27 02:13:03.790192"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/41” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"41"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 41)
Rendered applications/show.html.erb within layouts/application (5.7ms)

Completed 200 OK in 89ms (Views: 80.5ms | ActiveRecord: 2.8ms) Started GET “/pets/101” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"101"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/41” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"41"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 41)
Rendered applications/show.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 1.2ms) Started GET “/pets/102” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"102"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 102], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.6ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:03.955415"], ["updated_at", "2021-10-27 02:13:03.955415"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 42], ["created_at", "2021-10-27 02:13:03.957123"], ["updated_at", "2021-10-27 02:13:03.957123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 42], ["created_at", "2021-10-27 02:13:03.958680"], ["updated_at", "2021-10-27 02:13:03.958680"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 42], ["created_at", "2021-10-27 02:13:03.960096"], ["updated_at", "2021-10-27 02:13:03.960096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:03.961416"], ["updated_at", "2021-10-27 02:13:03.961416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/42” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"42"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)
Rendered applications/show.html.erb within layouts/application (4.1ms)

Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 1.6ms) Started GET “/applications/42?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"42"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.1ms)

Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 2.1ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:03.996393"], ["updated_at", "2021-10-27 02:13:03.996393"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 43], ["created_at", "2021-10-27 02:13:03.998612"], ["updated_at", "2021-10-27 02:13:03.998612"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:04.000542"], ["updated_at", "2021-10-27 02:13:04.000542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/43” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"43"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
Rendered applications/show.html.erb within layouts/application (3.0ms)

Completed 200 OK in 6ms (Views: 3.6ms | ActiveRecord: 1.1ms) Started GET “/applications/43?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"43"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (6.1ms)

Completed 200 OK in 9ms (Views: 5.7ms | ActiveRecord: 2.1ms) Started POST “/application_pets?app_id=43&pet_id=107” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"43", "pet_id"=>"107"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
ApplicationPet Create (0.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 107], ["application_id", 43], ["created_at", "2021-10-27 02:13:04.038049"], ["updated_at", "2021-10-27 02:13:04.038049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/43 Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET “/applications/43” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"43"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
Rendered applications/show.html.erb within layouts/application (2.0ms)

Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 1.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:04.047658"], ["updated_at", "2021-10-27 02:13:04.047658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 44], ["created_at", "2021-10-27 02:13:04.049471"], ["updated_at", "2021-10-27 02:13:04.049471"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 44], ["created_at", "2021-10-27 02:13:04.051111"], ["updated_at", "2021-10-27 02:13:04.051111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 44], ["created_at", "2021-10-27 02:13:04.052261"], ["updated_at", "2021-10-27 02:13:04.052261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:04.053298"], ["updated_at", "2021-10-27 02:13:04.053298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/44” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"44"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.2ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.6ms) Started GET “/applications/44?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"44"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (3.6ms)

Completed 200 OK in 6ms (Views: 2.9ms | ActiveRecord: 2.1ms) Started POST “/application_pets?app_id=44&pet_id=110” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"44", "pet_id"=>"110"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 110], ["application_id", 44], ["created_at", "2021-10-27 02:13:04.079611"], ["updated_at", "2021-10-27 02:13:04.079611"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/44 Completed 302 Found in 4ms (ActiveRecord: 1.7ms) Started GET “/applications/44” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"44"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)
Rendered applications/show.html.erb within layouts/application (2.4ms)

Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 1.2ms) Started PATCH “/applications/44” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#update as HTML

Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"44"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.8ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "Pending"], ["updated_at", "2021-10-27 02:13:04.099227"], ["id", 44]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/44 Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET “/applications/44” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"44"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)
Rendered applications/show.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.7ms)

 (0.4ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:29.704127"], ["updated_at", "2021-10-27 02:13:29.704127"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 45], ["created_at", "2021-10-27 02:13:29.745233"], ["updated_at", "2021-10-27 02:13:29.745233"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 45], ["created_at", "2021-10-27 02:13:29.748551"], ["updated_at", "2021-10-27 02:13:29.748551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 45], ["created_at", "2021-10-27 02:13:29.750583"], ["updated_at", "2021-10-27 02:13:29.750583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:29.780595"], ["updated_at", "2021-10-27 02:13:29.780595"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (2.0ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 111], ["application_id", 45], ["created_at", "2021-10-27 02:13:29.800463"], ["updated_at", "2021-10-27 02:13:29.800463"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 112], ["application_id", 45], ["created_at", "2021-10-27 02:13:29.803677"], ["updated_at", "2021-10-27 02:13:29.803677"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/45” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"45"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (2.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 45)
Rendered applications/show.html.erb within layouts/application (6.4ms)

Completed 200 OK in 88ms (Views: 78.5ms | ActiveRecord: 3.6ms) Started GET “/pets/111” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"111"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/45” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"45"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 45)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 1.3ms) Started GET “/pets/112” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"112"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.7ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:29.951471"], ["updated_at", "2021-10-27 02:13:29.951471"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 46], ["created_at", "2021-10-27 02:13:29.953166"], ["updated_at", "2021-10-27 02:13:29.953166"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 46], ["created_at", "2021-10-27 02:13:29.954739"], ["updated_at", "2021-10-27 02:13:29.954739"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 46], ["created_at", "2021-10-27 02:13:29.956296"], ["updated_at", "2021-10-27 02:13:29.956296"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:29.957676"], ["updated_at", "2021-10-27 02:13:29.957676"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/46” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"46"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 46)
Rendered applications/show.html.erb within layouts/application (4.0ms)

Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 1.6ms) Started GET “/applications/46?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"46"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 46)
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.1ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 2.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:29.983115"], ["updated_at", "2021-10-27 02:13:29.983115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 47], ["created_at", "2021-10-27 02:13:29.984645"], ["updated_at", "2021-10-27 02:13:29.984645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:29.985879"], ["updated_at", "2021-10-27 02:13:29.985879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/47” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"47"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)
Rendered applications/show.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 1.3ms) Started GET “/applications/47?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"47"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.2ms) Started POST “/application_pets?app_id=47&pet_id=117” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"47", "pet_id"=>"117"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
ApplicationPet Create (1.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 117], ["application_id", 47], ["created_at", "2021-10-27 02:13:30.005439"], ["updated_at", "2021-10-27 02:13:30.005439"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/47 Completed 302 Found in 4ms (ActiveRecord: 2.2ms) Started GET “/applications/47” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"47"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:30.013731"], ["updated_at", "2021-10-27 02:13:30.013731"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 48], ["created_at", "2021-10-27 02:13:30.015288"], ["updated_at", "2021-10-27 02:13:30.015288"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 48], ["created_at", "2021-10-27 02:13:30.016682"], ["updated_at", "2021-10-27 02:13:30.016682"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 48], ["created_at", "2021-10-27 02:13:30.017972"], ["updated_at", "2021-10-27 02:13:30.017972"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:30.019140"], ["updated_at", "2021-10-27 02:13:30.019140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/48” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"48"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.9ms) Started GET “/applications/48?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"48"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.3ms) Started POST “/application_pets?app_id=48&pet_id=120” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"48", "pet_id"=>"120"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 120], ["application_id", 48], ["created_at", "2021-10-27 02:13:30.048483"], ["updated_at", "2021-10-27 02:13:30.048483"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/48 Completed 302 Found in 3ms (ActiveRecord: 1.6ms) Started GET “/applications/48” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"48"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.4ms) Started PATCH “/applications/48” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#update as HTML

Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"48"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.5ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "Pending"], ["updated_at", "2021-10-27 02:13:30.058743"], ["id", 48]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/48 Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/applications/48” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"48"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.3ms)

 (0.4ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:48.716413"], ["updated_at", "2021-10-27 02:13:48.716413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 49], ["created_at", "2021-10-27 02:13:48.748855"], ["updated_at", "2021-10-27 02:13:48.748855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 49], ["created_at", "2021-10-27 02:13:48.751372"], ["updated_at", "2021-10-27 02:13:48.751372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 49], ["created_at", "2021-10-27 02:13:48.752832"], ["updated_at", "2021-10-27 02:13:48.752832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:48.770344"], ["updated_at", "2021-10-27 02:13:48.770344"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 121], ["application_id", 49], ["created_at", "2021-10-27 02:13:48.789175"], ["updated_at", "2021-10-27 02:13:48.789175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 122], ["application_id", 49], ["created_at", "2021-10-27 02:13:48.792178"], ["updated_at", "2021-10-27 02:13:48.792178"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/49” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"49"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)
Rendered applications/show.html.erb within layouts/application (5.3ms)

Completed 200 OK in 91ms (Views: 83.4ms | ActiveRecord: 2.1ms) Started GET “/pets/121” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"121"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/49” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"49"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)
Rendered applications/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.2ms) Started GET “/pets/122” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"122"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:48.960992"], ["updated_at", "2021-10-27 02:13:48.960992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 50], ["created_at", "2021-10-27 02:13:48.962751"], ["updated_at", "2021-10-27 02:13:48.962751"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 50], ["created_at", "2021-10-27 02:13:48.963913"], ["updated_at", "2021-10-27 02:13:48.963913"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 50], ["created_at", "2021-10-27 02:13:48.965300"], ["updated_at", "2021-10-27 02:13:48.965300"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:48.966588"], ["updated_at", "2021-10-27 02:13:48.966588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/50” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"50"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)
Rendered applications/show.html.erb within layouts/application (3.6ms)

Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 1.3ms) Started GET “/applications/50?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"50"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.3ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:49.001615"], ["updated_at", "2021-10-27 02:13:49.001615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 51], ["created_at", "2021-10-27 02:13:49.003849"], ["updated_at", "2021-10-27 02:13:49.003849"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:49.005652"], ["updated_at", "2021-10-27 02:13:49.005652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/51” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"51"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 51)
Rendered applications/show.html.erb within layouts/application (2.6ms)

Completed 200 OK in 5ms (Views: 2.4ms | ActiveRecord: 1.4ms) Started GET “/applications/51?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"51"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 51)
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.8ms)

Completed 200 OK in 5ms (Views: 1.7ms | ActiveRecord: 2.2ms) Started POST “/application_pets?app_id=51&pet_id=127” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"51", "pet_id"=>"127"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
ApplicationPet Create (1.1ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 127], ["application_id", 51], ["created_at", "2021-10-27 02:13:49.038384"], ["updated_at", "2021-10-27 02:13:49.038384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/51 Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET “/applications/51” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"51"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 51)
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 1.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:49.048432"], ["updated_at", "2021-10-27 02:13:49.048432"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 52], ["created_at", "2021-10-27 02:13:49.050863"], ["updated_at", "2021-10-27 02:13:49.050863"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 52], ["created_at", "2021-10-27 02:13:49.052740"], ["updated_at", "2021-10-27 02:13:49.052740"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 52], ["created_at", "2021-10-27 02:13:49.054764"], ["updated_at", "2021-10-27 02:13:49.054764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:49.056659"], ["updated_at", "2021-10-27 02:13:49.056659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/52” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"52"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)
Rendered applications/show.html.erb within layouts/application (2.3ms)

Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 1.3ms) Started GET “/applications/52?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"52"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (3.0ms)

Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 1.8ms) Started POST “/application_pets?app_id=52&pet_id=130” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"52", "pet_id"=>"130"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 130], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 130], ["application_id", 52], ["created_at", "2021-10-27 02:13:49.082728"], ["updated_at", "2021-10-27 02:13:49.082728"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/52 Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET “/applications/52” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"52"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)
Rendered applications/show.html.erb within layouts/application (1.7ms)

Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.8ms) Started PATCH “/applications/52” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#update as HTML

Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"52"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.6ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "Pending"], ["updated_at", "2021-10-27 02:13:49.100469"], ["id", 52]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/52 Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/applications/52” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"52"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)
Rendered applications/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.7ms)

 (0.3ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:25:08.152468"], ["updated_at", "2021-10-27 02:25:08.152468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 53], ["created_at", "2021-10-27 02:25:08.186967"], ["updated_at", "2021-10-27 02:25:08.186967"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 53], ["created_at", "2021-10-27 02:25:08.189634"], ["updated_at", "2021-10-27 02:25:08.189634"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 53], ["created_at", "2021-10-27 02:25:08.190916"], ["updated_at", "2021-10-27 02:25:08.190916"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:25:08.209896"], ["updated_at", "2021-10-27 02:25:08.209896"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 131], ["application_id", 53], ["created_at", "2021-10-27 02:25:08.226416"], ["updated_at", "2021-10-27 02:25:08.226416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 132], ["application_id", 53], ["created_at", "2021-10-27 02:25:08.228744"], ["updated_at", "2021-10-27 02:25:08.228744"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/53” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"53"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)
Rendered applications/show.html.erb within layouts/application (5.3ms)

Completed 200 OK in 90ms (Views: 81.7ms | ActiveRecord: 2.2ms) Started GET “/pets/131” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"131"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 131], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.8ms) Started GET “/applications/53” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"53"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.1ms) Started GET “/pets/132” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"132"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 132], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:25:08.396641"], ["updated_at", "2021-10-27 02:25:08.396641"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 54], ["created_at", "2021-10-27 02:25:08.398482"], ["updated_at", "2021-10-27 02:25:08.398482"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 54], ["created_at", "2021-10-27 02:25:08.400095"], ["updated_at", "2021-10-27 02:25:08.400095"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 54], ["created_at", "2021-10-27 02:25:08.401502"], ["updated_at", "2021-10-27 02:25:08.401502"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:25:08.402803"], ["updated_at", "2021-10-27 02:25:08.402803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/54” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"54"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)
Rendered applications/show.html.erb within layouts/application (3.9ms)

Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 1.7ms) Started GET “/applications/54?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"54"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.2ms)

Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 2.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:25:08.436193"], ["updated_at", "2021-10-27 02:25:08.436193"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 55], ["created_at", "2021-10-27 02:25:08.438084"], ["updated_at", "2021-10-27 02:25:08.438084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:25:08.439536"], ["updated_at", "2021-10-27 02:25:08.439536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/55” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"55"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
Rendered applications/show.html.erb within layouts/application (2.5ms)

Completed 200 OK in 6ms (Views: 3.6ms | ActiveRecord: 1.4ms) Started GET “/applications/55?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"55"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (5.9ms)

Completed 200 OK in 8ms (Views: 5.1ms | ActiveRecord: 2.0ms) Started POST “/application_pets?app_id=55&pet_id=137” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"55", "pet_id"=>"137"}
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 137], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 137], ["application_id", 55], ["created_at", "2021-10-27 02:25:08.475899"], ["updated_at", "2021-10-27 02:25:08.475899"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/55 Completed 302 Found in 5ms (ActiveRecord: 2.0ms) Started GET “/applications/55” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"55"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
Rendered applications/show.html.erb within layouts/application (2.7ms)

Completed 200 OK in 5ms (Views: 2.5ms | ActiveRecord: 1.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:25:08.487437"], ["updated_at", "2021-10-27 02:25:08.487437"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 56], ["created_at", "2021-10-27 02:25:08.488960"], ["updated_at", "2021-10-27 02:25:08.488960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 56], ["created_at", "2021-10-27 02:25:08.490435"], ["updated_at", "2021-10-27 02:25:08.490435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 56], ["created_at", "2021-10-27 02:25:08.492098"], ["updated_at", "2021-10-27 02:25:08.492098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:25:08.493419"], ["updated_at", "2021-10-27 02:25:08.493419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/56” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"56"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
Rendered applications/show.html.erb within layouts/application (2.3ms)

Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 1.5ms) Started GET “/applications/56?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"56"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (3.3ms)

Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 1.8ms) Started POST “/application_pets?app_id=56&pet_id=140” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"56", "pet_id"=>"140"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 140], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 140], ["application_id", 56], ["created_at", "2021-10-27 02:25:08.520357"], ["updated_at", "2021-10-27 02:25:08.520357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/56 Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET “/applications/56” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"56"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
Rendered applications/show.html.erb within layouts/application (2.8ms)

Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 1.2ms) Started PATCH “/applications/56” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#update as HTML

Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"56"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.6ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "Pending"], ["updated_at", "2021-10-27 02:25:08.539380"], ["id", 56]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/56 Completed 302 Found in 2ms (ActiveRecord: 1.1ms) Started GET “/applications/56” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"56"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:25:08.551366"], ["updated_at", "2021-10-27 02:25:08.551366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/57” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"57"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)
Rendered applications/show.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.3ms)

 (0.1ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 07:28:06 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (1.2ms)

Completed 200 OK in 92ms (Views: 88.8ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (7.6ms)

Completed 200 OK in 13ms (Views: 7.2ms | ActiveRecord: 4.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (6.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (6.8ms)

Completed 200 OK in 11ms (Views: 1.3ms | ActiveRecord: 8.6ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.7ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (1.8ms)

Completed 200 OK in 7ms (Views: 2.1ms | ActiveRecord: 3.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:07.195236"], ["updated_at", "2021-10-27 13:28:07.195236"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 57], ["created_at", "2021-10-27 13:28:07.214737"], ["updated_at", "2021-10-27 13:28:07.214737"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 57], ["created_at", "2021-10-27 13:28:07.216848"], ["updated_at", "2021-10-27 13:28:07.216848"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 57], ["created_at", "2021-10-27 13:28:07.218257"], ["updated_at", "2021-10-27 13:28:07.218257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.233307"], ["updated_at", "2021-10-27 13:28:07.233307"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 141], ["application_id", 58], ["created_at", "2021-10-27 13:28:07.250702"], ["updated_at", "2021-10-27 13:28:07.250702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 142], ["application_id", 58], ["created_at", "2021-10-27 13:28:07.253273"], ["updated_at", "2021-10-27 13:28:07.253273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/58” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"58"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)
Rendered applications/show.html.erb within layouts/application (6.3ms)

Completed 200 OK in 10ms (Views: 5.4ms | ActiveRecord: 2.3ms) Started GET “/pets/141” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"141"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 141], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.6ms) Started GET “/applications/58” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"58"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.2ms) Started GET “/pets/142” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"142"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 142], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:07.303338"], ["updated_at", "2021-10-27 13:28:07.303338"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 58], ["created_at", "2021-10-27 13:28:07.305013"], ["updated_at", "2021-10-27 13:28:07.305013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 58], ["created_at", "2021-10-27 13:28:07.306423"], ["updated_at", "2021-10-27 13:28:07.306423"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 58], ["created_at", "2021-10-27 13:28:07.307544"], ["updated_at", "2021-10-27 13:28:07.307544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.308919"], ["updated_at", "2021-10-27 13:28:07.308919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/59” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"59"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.3ms) Started GET “/applications/59?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"59"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.0ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:07.331591"], ["updated_at", "2021-10-27 13:28:07.331591"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 59], ["created_at", "2021-10-27 13:28:07.333284"], ["updated_at", "2021-10-27 13:28:07.333284"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.334247"], ["updated_at", "2021-10-27 13:28:07.334247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/60” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"60"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.9ms) Started GET “/applications/60?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"60"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.4ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.4ms) Started POST “/application_pets?app_id=60&pet_id=147” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"60", "pet_id"=>"147"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 147], ["application_id", 60], ["created_at", "2021-10-27 13:28:07.355594"], ["updated_at", "2021-10-27 13:28:07.355594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/60 Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET “/applications/60” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"60"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)
Rendered applications/show.html.erb within layouts/application (2.4ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.2ms)

 (0.3ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:07.364995"], ["updated_at", "2021-10-27 13:28:07.364995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 60], ["created_at", "2021-10-27 13:28:07.366253"], ["updated_at", "2021-10-27 13:28:07.366253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 60], ["created_at", "2021-10-27 13:28:07.367357"], ["updated_at", "2021-10-27 13:28:07.367357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 60], ["created_at", "2021-10-27 13:28:07.368661"], ["updated_at", "2021-10-27 13:28:07.368661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.369551"], ["updated_at", "2021-10-27 13:28:07.369551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/61” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"61"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)
Rendered applications/show.html.erb within layouts/application (2.2ms)

Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.7ms) Started GET “/applications/61?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"61"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (2.9ms)

Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 1.7ms) Started POST “/application_pets?app_id=61&pet_id=150” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"61", "pet_id"=>"150"}
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 150], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 150], ["application_id", 61], ["created_at", "2021-10-27 13:28:07.398312"], ["updated_at", "2021-10-27 13:28:07.398312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/61 Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET “/applications/61” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"61"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)
Rendered applications/show.html.erb within layouts/application (2.0ms)

Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.9ms) Started PATCH “/applications/61” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#update as HTML

Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"61"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.4ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "Pending"], ["updated_at", "2021-10-27 13:28:07.411780"], ["id", 61]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/61 Completed 302 Found in 3ms (ActiveRecord: 1.0ms) Started GET “/applications/61” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"61"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.1ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.430256"], ["updated_at", "2021-10-27 13:28:07.430256"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/62” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"62"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.2ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 62)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 62)
Rendered applications/show.html.erb within layouts/application (2.4ms)

Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 1.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.442112"], ["updated_at", "2021-10-27 13:28:07.442112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/61/pets/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"61"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (2.9ms)

Completed 200 OK in 6ms (Views: 3.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.456512"], ["updated_at", "2021-10-27 13:28:07.456512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/62/pets/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"62"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (1.0ms)

Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.3ms) Started POST “/shelters/62/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"62"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 62], ["created_at", "2021-10-27 13:28:07.472354"], ["updated_at", "2021-10-27 13:28:07.472354"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/62/pets Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/shelters/62/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"62"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 62], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.2ms)

Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.486650"], ["updated_at", "2021-10-27 13:28:07.486650"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/63/pets/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"63"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms) Started POST “/shelters/63/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"63"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/63/pets/new Completed 302 Found in 5ms (ActiveRecord: 0.5ms) Started GET “/shelters/63/pets/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"63"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.511184"], ["updated_at", "2021-10-27 13:28:07.511184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 64], ["created_at", "2021-10-27 13:28:07.512784"], ["updated_at", "2021-10-27 13:28:07.512784"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 64], ["created_at", "2021-10-27 13:28:07.514479"], ["updated_at", "2021-10-27 13:28:07.514479"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.525307"], ["updated_at", "2021-10-27 13:28:07.525307"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 65], ["created_at", "2021-10-27 13:28:07.527176"], ["updated_at", "2021-10-27 13:28:07.527176"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 65], ["created_at", "2021-10-27 13:28:07.528627"], ["updated_at", "2021-10-27 13:28:07.528627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 65], ["created_at", "2021-10-27 13:28:07.530270"], ["updated_at", "2021-10-27 13:28:07.530270"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.535902"], ["updated_at", "2021-10-27 13:28:07.535902"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 66], ["created_at", "2021-10-27 13:28:07.537271"], ["updated_at", "2021-10-27 13:28:07.537271"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 66], ["created_at", "2021-10-27 13:28:07.539065"], ["updated_at", "2021-10-27 13:28:07.539065"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started GET “/pets/157/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"157"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 157], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.550095"], ["updated_at", "2021-10-27 13:28:07.550095"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 67], ["created_at", "2021-10-27 13:28:07.551622"], ["updated_at", "2021-10-27 13:28:07.551622"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 67], ["created_at", "2021-10-27 13:28:07.553005"], ["updated_at", "2021-10-27 13:28:07.553005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started DELETE “/pets/159” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"159"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 159], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.0ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 159]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.5ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.571079"], ["updated_at", "2021-10-27 13:28:07.571079"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 68], ["created_at", "2021-10-27 13:28:07.572717"], ["updated_at", "2021-10-27 13:28:07.572717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 68], ["created_at", "2021-10-27 13:28:07.574344"], ["updated_at", "2021-10-27 13:28:07.574344"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 68], ["created_at", "2021-10-27 13:28:07.575621"], ["updated_at", "2021-10-27 13:28:07.575621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (1.8ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (3.0ms)

Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 2.0ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (0.9ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.603298"], ["updated_at", "2021-10-27 13:28:07.603298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.6ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-27 13:28:07.604702"], ["id", 63]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/63 Completed 302 Found in 3ms (ActiveRecord: 1.7ms) Started GET “/applications/63” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"63"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 63)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 63)
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.0ms)

Application Load (0.3ms)  SELECT  "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1  [["LIMIT", 1]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.616220"], ["updated_at", "2021-10-27 13:28:07.616220"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 69], ["created_at", "2021-10-27 13:28:07.618008"], ["updated_at", "2021-10-27 13:28:07.618008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/164” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"164"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 164], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.625323"], ["updated_at", "2021-10-27 13:28:07.625323"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 70], ["created_at", "2021-10-27 13:28:07.626904"], ["updated_at", "2021-10-27 13:28:07.626904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/165” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"165"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 165], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started DELETE “/pets/165” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"165"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 165], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.0ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 165]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-27 13:28:07.637945"], ["updated_at", "2021-10-27 13:28:07.637945"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 71], ["created_at", "2021-10-27 13:28:07.639357"], ["updated_at", "2021-10-27 13:28:07.639357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/166/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"166"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 166], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 13:28:07.645557"], ["updated_at", "2021-10-27 13:28:07.645557"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 72], ["created_at", "2021-10-27 13:28:07.646895"], ["updated_at", "2021-10-27 13:28:07.646895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/167/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"167"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 167], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/pets/167” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"167"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 167], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Pet Update (0.6ms)  UPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6  [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-27 13:28:07.655924"], ["id", 167]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets/167 Completed 302 Found in 3ms (ActiveRecord: 1.0ms) Started GET “/pets/167” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"167"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 167], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 13:28:07.661869"], ["updated_at", "2021-10-27 13:28:07.661869"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 73], ["created_at", "2021-10-27 13:28:07.663583"], ["updated_at", "2021-10-27 13:28:07.663583"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/168/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"168"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 168], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms) Started PATCH “/pets/168” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"168"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 168], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
 (0.2ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/pets/168/edit Completed 302 Found in 3ms (ActiveRecord: 0.7ms) Started GET “/pets/168/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"168"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 168], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.685481"], ["updated_at", "2021-10-27 13:28:07.685481"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.686700"], ["updated_at", "2021-10-27 13:28:07.686700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.687635"], ["updated_at", "2021-10-27 13:28:07.687635"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 74], ["created_at", "2021-10-27 13:28:07.688853"], ["updated_at", "2021-10-27 13:28:07.688853"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 74], ["created_at", "2021-10-27 13:28:07.690196"], ["updated_at", "2021-10-27 13:28:07.690196"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 76], ["created_at", "2021-10-27 13:28:07.691610"], ["updated_at", "2021-10-27 13:28:07.691610"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.694042"], ["updated_at", "2021-10-27 13:28:07.694042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.695145"], ["updated_at", "2021-10-27 13:28:07.695145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.696317"], ["updated_at", "2021-10-27 13:28:07.696317"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 77], ["created_at", "2021-10-27 13:28:07.697566"], ["updated_at", "2021-10-27 13:28:07.697566"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 77], ["created_at", "2021-10-27 13:28:07.698634"], ["updated_at", "2021-10-27 13:28:07.698634"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 79], ["created_at", "2021-10-27 13:28:07.700126"], ["updated_at", "2021-10-27 13:28:07.700126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.702702"], ["updated_at", "2021-10-27 13:28:07.702702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.703794"], ["updated_at", "2021-10-27 13:28:07.703794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.704841"], ["updated_at", "2021-10-27 13:28:07.704841"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 80], ["created_at", "2021-10-27 13:28:07.706115"], ["updated_at", "2021-10-27 13:28:07.706115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 80], ["created_at", "2021-10-27 13:28:07.707432"], ["updated_at", "2021-10-27 13:28:07.707432"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 82], ["created_at", "2021-10-27 13:28:07.708805"], ["updated_at", "2021-10-27 13:28:07.708805"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.711147"], ["updated_at", "2021-10-27 13:28:07.711147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.712295"], ["updated_at", "2021-10-27 13:28:07.712295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.713355"], ["updated_at", "2021-10-27 13:28:07.713355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 83], ["created_at", "2021-10-27 13:28:07.714682"], ["updated_at", "2021-10-27 13:28:07.714682"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 83], ["created_at", "2021-10-27 13:28:07.716009"], ["updated_at", "2021-10-27 13:28:07.716009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 85], ["created_at", "2021-10-27 13:28:07.717357"], ["updated_at", "2021-10-27 13:28:07.717357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.719705"], ["updated_at", "2021-10-27 13:28:07.719705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.720824"], ["updated_at", "2021-10-27 13:28:07.720824"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.721898"], ["updated_at", "2021-10-27 13:28:07.721898"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 86], ["created_at", "2021-10-27 13:28:07.723366"], ["updated_at", "2021-10-27 13:28:07.723366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 86], ["created_at", "2021-10-27 13:28:07.724688"], ["updated_at", "2021-10-27 13:28:07.724688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 88], ["created_at", "2021-10-27 13:28:07.725866"], ["updated_at", "2021-10-27 13:28:07.725866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.728648"], ["updated_at", "2021-10-27 13:28:07.728648"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.729771"], ["updated_at", "2021-10-27 13:28:07.729771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.730840"], ["updated_at", "2021-10-27 13:28:07.730840"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 89], ["created_at", "2021-10-27 13:28:07.732148"], ["updated_at", "2021-10-27 13:28:07.732148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 89], ["created_at", "2021-10-27 13:28:07.733504"], ["updated_at", "2021-10-27 13:28:07.733504"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 91], ["created_at", "2021-10-27 13:28:07.734884"], ["updated_at", "2021-10-27 13:28:07.734884"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.737268"], ["updated_at", "2021-10-27 13:28:07.737268"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.738612"], ["updated_at", "2021-10-27 13:28:07.738612"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.739766"], ["updated_at", "2021-10-27 13:28:07.739766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 92], ["created_at", "2021-10-27 13:28:07.741372"], ["updated_at", "2021-10-27 13:28:07.741372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 92], ["created_at", "2021-10-27 13:28:07.742639"], ["updated_at", "2021-10-27 13:28:07.742639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 94], ["created_at", "2021-10-27 13:28:07.743824"], ["updated_at", "2021-10-27 13:28:07.743824"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.746207"], ["updated_at", "2021-10-27 13:28:07.746207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.747349"], ["updated_at", "2021-10-27 13:28:07.747349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 95], ["created_at", "2021-10-27 13:28:07.748925"], ["updated_at", "2021-10-27 13:28:07.748925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 95], ["created_at", "2021-10-27 13:28:07.750580"], ["updated_at", "2021-10-27 13:28:07.750580"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 96], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 96], ["created_at", "2021-10-27 13:28:07.752236"], ["updated_at", "2021-10-27 13:28:07.752236"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 95], ["created_at", "2021-10-27 13:28:07.754061"], ["updated_at", "2021-10-27 13:28:07.754061"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/95/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"95"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 95], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 95], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.771139"], ["updated_at", "2021-10-27 13:28:07.771139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.772486"], ["updated_at", "2021-10-27 13:28:07.772486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 97], ["created_at", "2021-10-27 13:28:07.774256"], ["updated_at", "2021-10-27 13:28:07.774256"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 97], ["created_at", "2021-10-27 13:28:07.775787"], ["updated_at", "2021-10-27 13:28:07.775787"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 98], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 98], ["created_at", "2021-10-27 13:28:07.777086"], ["updated_at", "2021-10-27 13:28:07.777086"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 97], ["created_at", "2021-10-27 13:28:07.778424"], ["updated_at", "2021-10-27 13:28:07.778424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/97/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"97"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 97], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.6ms) Started GET “/shelters/97/pets/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"97"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 97], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.788803"], ["updated_at", "2021-10-27 13:28:07.788803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.790068"], ["updated_at", "2021-10-27 13:28:07.790068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 99], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 99], ["created_at", "2021-10-27 13:28:07.791979"], ["updated_at", "2021-10-27 13:28:07.791979"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 99], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 99], ["created_at", "2021-10-27 13:28:07.793468"], ["updated_at", "2021-10-27 13:28:07.793468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 100], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 100], ["created_at", "2021-10-27 13:28:07.795087"], ["updated_at", "2021-10-27 13:28:07.795087"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 99], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 99], ["created_at", "2021-10-27 13:28:07.796746"], ["updated_at", "2021-10-27 13:28:07.796746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/99/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"99"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 99], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 99], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started GET “/pets/198/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"198"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 198], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.806368"], ["updated_at", "2021-10-27 13:28:07.806368"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.807723"], ["updated_at", "2021-10-27 13:28:07.807723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 101], ["created_at", "2021-10-27 13:28:07.809211"], ["updated_at", "2021-10-27 13:28:07.809211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 101], ["created_at", "2021-10-27 13:28:07.810485"], ["updated_at", "2021-10-27 13:28:07.810485"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 102], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 102], ["created_at", "2021-10-27 13:28:07.811688"], ["updated_at", "2021-10-27 13:28:07.811688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 101], ["created_at", "2021-10-27 13:28:07.812935"], ["updated_at", "2021-10-27 13:28:07.812935"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/101/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"101"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 101], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started DELETE “/pets/202” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"202"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 202], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.9ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 202]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.4ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 102], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.827630"], ["updated_at", "2021-10-27 13:28:07.827630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.828699"], ["updated_at", "2021-10-27 13:28:07.828699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 103], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 103], ["created_at", "2021-10-27 13:28:07.830097"], ["updated_at", "2021-10-27 13:28:07.830097"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 103], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 103], ["created_at", "2021-10-27 13:28:07.831788"], ["updated_at", "2021-10-27 13:28:07.831788"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 104], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 104], ["created_at", "2021-10-27 13:28:07.833696"], ["updated_at", "2021-10-27 13:28:07.833696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 103], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 103], ["created_at", "2021-10-27 13:28:07.835376"], ["updated_at", "2021-10-27 13:28:07.835376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/103/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"103"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 103], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 103], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.843060"], ["updated_at", "2021-10-27 13:28:07.843060"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.844067"], ["updated_at", "2021-10-27 13:28:07.844067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 105], ["created_at", "2021-10-27 13:28:07.845526"], ["updated_at", "2021-10-27 13:28:07.845526"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 105], ["created_at", "2021-10-27 13:28:07.847402"], ["updated_at", "2021-10-27 13:28:07.847402"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 106], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 106], ["created_at", "2021-10-27 13:28:07.849056"], ["updated_at", "2021-10-27 13:28:07.849056"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 105], ["created_at", "2021-10-27 13:28:07.850658"], ["updated_at", "2021-10-27 13:28:07.850658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/105/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"105"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 105], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/shelters/105/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML

Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"105"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 105], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')  [["shelter_id", 105], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.6ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.865594"], ["updated_at", "2021-10-27 13:28:07.865594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.866898"], ["updated_at", "2021-10-27 13:28:07.866898"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 107], ["created_at", "2021-10-27 13:28:07.868490"], ["updated_at", "2021-10-27 13:28:07.868490"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 107], ["created_at", "2021-10-27 13:28:07.870158"], ["updated_at", "2021-10-27 13:28:07.870158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 108], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 108], ["created_at", "2021-10-27 13:28:07.871830"], ["updated_at", "2021-10-27 13:28:07.871830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 107], ["created_at", "2021-10-27 13:28:07.873548"], ["updated_at", "2021-10-27 13:28:07.873548"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/107/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"107"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 107], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms) Started GET “/shelters/107/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML

Parameters: {"sort"=>"alphabetical", "shelter_id"=>"107"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (2.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 107], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (3.4ms)

Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 2.6ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.888287"], ["updated_at", "2021-10-27 13:28:07.888287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/109” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.890859"], ["updated_at", "2021-10-27 13:28:07.890859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 110], ["created_at", "2021-10-27 13:28:07.892026"], ["updated_at", "2021-10-27 13:28:07.892026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/110” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.894306"], ["updated_at", "2021-10-27 13:28:07.894306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/111” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.896241"], ["updated_at", "2021-10-27 13:28:07.896241"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/112” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.898553"], ["updated_at", "2021-10-27 13:28:07.898553"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/113/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.900532"], ["updated_at", "2021-10-27 13:28:07.900532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/114/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.905447"], ["updated_at", "2021-10-27 13:28:07.905447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/115/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (1.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.918515"], ["updated_at", "2021-10-27 13:28:07.918515"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/1/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"1"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.9ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.928755"], ["updated_at", "2021-10-27 13:28:07.928755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/2/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"2"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"2"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Veterinarian Create (1.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 2], ["created_at", "2021-10-27 13:28:07.950012"], ["updated_at", "2021-10-27 13:28:07.950012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/2/veterinarians Completed 302 Found in 14ms (ActiveRecord: 8.3ms) Started GET “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"2"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 2], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.7ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.960065"], ["updated_at", "2021-10-27 13:28:07.960065"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"3"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/3/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"3"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/3/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.4ms) Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"3"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.976215"], ["updated_at", "2021-10-27 13:28:07.976215"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 13:28:07.977931"], ["updated_at", "2021-10-27 13:28:07.977931"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Veterinarian Create (0.9ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 13:28:07.979295"], ["updated_at", "2021-10-27 13:28:07.979295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.988644"], ["updated_at", "2021-10-27 13:28:07.988644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 13:28:07.990226"], ["updated_at", "2021-10-27 13:28:07.990226"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 13:28:07.991560"], ["updated_at", "2021-10-27 13:28:07.991560"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.996910"], ["updated_at", "2021-10-27 13:28:07.996910"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 13:28:07.998515"], ["updated_at", "2021-10-27 13:28:07.998515"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 13:28:08.000452"], ["updated_at", "2021-10-27 13:28:08.000452"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/veterinarians/6/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"6"}
Veterinarian Load (0.5ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.011004"], ["updated_at", "2021-10-27 13:28:08.011004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 13:28:08.012709"], ["updated_at", "2021-10-27 13:28:08.012709"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 13:28:08.013947"], ["updated_at", "2021-10-27 13:28:08.013947"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms) Started DELETE “/veterinarians/8” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"8"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 8]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.025477"], ["updated_at", "2021-10-27 13:28:08.025477"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 8], ["created_at", "2021-10-27 13:28:08.026809"], ["updated_at", "2021-10-27 13:28:08.026809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/10” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"10"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.034199"], ["updated_at", "2021-10-27 13:28:08.034199"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 9], ["created_at", "2021-10-27 13:28:08.035546"], ["updated_at", "2021-10-27 13:28:08.035546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/11” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"11"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms) Started DELETE “/veterinarians/11” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"11"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 11]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.5ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (0.3ms)

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:28:08.044851"], ["updated_at", "2021-10-27 13:28:08.044851"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 10], ["created_at", "2021-10-27 13:28:08.046028"], ["updated_at", "2021-10-27 13:28:08.046028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/12/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"12"}
Veterinarian Load (0.5ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:28:08.052496"], ["updated_at", "2021-10-27 13:28:08.052496"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 11], ["created_at", "2021-10-27 13:28:08.053841"], ["updated_at", "2021-10-27 13:28:08.053841"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/13/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"13"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/13” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"13"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Veterinarian Update (0.7ms)  UPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5  [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-27 13:28:08.062638"], ["id", 13]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/13 Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/veterinarians/13” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"13"}
Veterinarian Load (0.1ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:28:08.069171"], ["updated_at", "2021-10-27 13:28:08.069171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 12], ["created_at", "2021-10-27 13:28:08.070617"], ["updated_at", "2021-10-27 13:28:08.070617"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"14"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/14” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"14"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/14/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"14"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-27 13:28:08.097830"], ["updated_at", "2021-10-27 13:28:08.097830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.5ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:28:08.117606"], ["updated_at", "2021-10-27 13:28:08.117606"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:28:08.118636"], ["updated_at", "2021-10-27 13:28:08.118636"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.119392"], ["updated_at", "2021-10-27 13:28:08.119392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 13:28:08.120441"], ["updated_at", "2021-10-27 13:28:08.120441"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 13:28:08.121429"], ["updated_at", "2021-10-27 13:28:08.121429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 16], ["created_at", "2021-10-27 13:28:08.122612"], ["updated_at", "2021-10-27 13:28:08.122612"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:28:08.129413"], ["updated_at", "2021-10-27 13:28:08.129413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:28:08.130590"], ["updated_at", "2021-10-27 13:28:08.130590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.131632"], ["updated_at", "2021-10-27 13:28:08.131632"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 13:28:08.133093"], ["updated_at", "2021-10-27 13:28:08.133093"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 13:28:08.134313"], ["updated_at", "2021-10-27 13:28:08.134313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 19], ["created_at", "2021-10-27 13:28:08.135343"], ["updated_at", "2021-10-27 13:28:08.135343"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:28:08.142231"], ["updated_at", "2021-10-27 13:28:08.142231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:28:08.143422"], ["updated_at", "2021-10-27 13:28:08.143422"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.144399"], ["updated_at", "2021-10-27 13:28:08.144399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 13:28:08.145654"], ["updated_at", "2021-10-27 13:28:08.145654"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 13:28:08.146970"], ["updated_at", "2021-10-27 13:28:08.146970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 22], ["created_at", "2021-10-27 13:28:08.148306"], ["updated_at", "2021-10-27 13:28:08.148306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML

Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (2.6ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
Rendered veterinary_offices/index.html.erb within layouts/application (3.1ms)

Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 2.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:28:08.160534"], ["updated_at", "2021-10-27 13:28:08.160534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:28:08.161748"], ["updated_at", "2021-10-27 13:28:08.161748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.162776"], ["updated_at", "2021-10-27 13:28:08.162776"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 13:28:08.164048"], ["updated_at", "2021-10-27 13:28:08.164048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 13:28:08.165426"], ["updated_at", "2021-10-27 13:28:08.165426"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 25], ["created_at", "2021-10-27 13:28:08.167084"], ["updated_at", "2021-10-27 13:28:08.167084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started GET “/veterinary_offices/23/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"23"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:28:08.178189"], ["updated_at", "2021-10-27 13:28:08.178189"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:28:08.179294"], ["updated_at", "2021-10-27 13:28:08.179294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.180193"], ["updated_at", "2021-10-27 13:28:08.180193"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 13:28:08.181362"], ["updated_at", "2021-10-27 13:28:08.181362"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 13:28:08.182712"], ["updated_at", "2021-10-27 13:28:08.182712"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 28], ["created_at", "2021-10-27 13:28:08.183983"], ["updated_at", "2021-10-27 13:28:08.183983"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms) Started DELETE “/veterinary_offices/26” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"26"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 26], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 26]]
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 27]]
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 28]]
VeterinaryOffice Destroy (1.0ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 26]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 4ms (ActiveRecord: 2.1ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.198983"], ["updated_at", "2021-10-27 13:28:08.198983"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/29” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"29"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 29]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.206031"], ["updated_at", "2021-10-27 13:28:08.206031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/30” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"30"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 30], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.5ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 30]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms)

 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 30]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 13:28:08.211827"], ["updated_at", "2021-10-27 13:28:08.211827"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/31” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"31"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 31]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms) Started DELETE “/veterinary_offices/31” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"31"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 31]]
VeterinaryOffice Destroy (0.4ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 31]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 13:28:08.222859"], ["updated_at", "2021-10-27 13:28:08.222859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/32” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"32"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 32]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms) Started GET “/veterinary_offices/32/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"32"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 32], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:28:08.230733"], ["updated_at", "2021-10-27 13:28:08.230733"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/33/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"33"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:28:08.235836"], ["updated_at", "2021-10-27 13:28:08.235836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/34/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"34"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/34” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"34"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Update (0.5ms)  UPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4  [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-27 13:28:08.244190"], ["id", 34]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:28:08.250022"], ["updated_at", "2021-10-27 13:28:08.250022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"35"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/35” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"35"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/35/edit Completed 302 Found in 2ms (ActiveRecord: 0.4ms) Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"35"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.263351"], ["updated_at", "2021-10-27 13:28:08.263351"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.264459"], ["updated_at", "2021-10-27 13:28:08.264459"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 13:28:08.266078"], ["updated_at", "2021-10-27 13:28:08.266078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 13:28:08.267683"], ["updated_at", "2021-10-27 13:28:08.267683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 13:28:08.269213"], ["updated_at", "2021-10-27 13:28:08.269213"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 13:28:08.270378"], ["updated_at", "2021-10-27 13:28:08.270378"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 13:28:08.271508"], ["updated_at", "2021-10-27 13:28:08.271508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/36/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"36"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 36], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.279669"], ["updated_at", "2021-10-27 13:28:08.279669"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.280871"], ["updated_at", "2021-10-27 13:28:08.280871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 13:28:08.282380"], ["updated_at", "2021-10-27 13:28:08.282380"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 13:28:08.283971"], ["updated_at", "2021-10-27 13:28:08.283971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 13:28:08.285801"], ["updated_at", "2021-10-27 13:28:08.285801"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 13:28:08.287243"], ["updated_at", "2021-10-27 13:28:08.287243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 13:28:08.288563"], ["updated_at", "2021-10-27 13:28:08.288563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/38/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"38"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 38], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.7ms) Started GET “/veterinarians/36/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"36"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (1.8ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.300580"], ["updated_at", "2021-10-27 13:28:08.300580"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (1.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.303356"], ["updated_at", "2021-10-27 13:28:08.303356"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (1.9ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 13:28:08.306225"], ["updated_at", "2021-10-27 13:28:08.306225"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 13:28:08.309386"], ["updated_at", "2021-10-27 13:28:08.309386"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 13:28:08.311105"], ["updated_at", "2021-10-27 13:28:08.311105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 13:28:08.312806"], ["updated_at", "2021-10-27 13:28:08.312806"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 13:28:08.314731"], ["updated_at", "2021-10-27 13:28:08.314731"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/40/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"40"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 40], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.7ms) Started DELETE “/veterinarians/41” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"41"}
Veterinarian Load (0.1ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 41]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.5ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.328463"], ["updated_at", "2021-10-27 13:28:08.328463"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.329723"], ["updated_at", "2021-10-27 13:28:08.329723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 13:28:08.331218"], ["updated_at", "2021-10-27 13:28:08.331218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 13:28:08.332750"], ["updated_at", "2021-10-27 13:28:08.332750"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 13:28:08.334368"], ["updated_at", "2021-10-27 13:28:08.334368"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 13:28:08.335556"], ["updated_at", "2021-10-27 13:28:08.335556"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 13:28:08.336720"], ["updated_at", "2021-10-27 13:28:08.336720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/42/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"42"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.6ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 42], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.7ms) Started GET “/veterinary_offices/42/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"42"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.346762"], ["updated_at", "2021-10-27 13:28:08.346762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.347977"], ["updated_at", "2021-10-27 13:28:08.347977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 13:28:08.349508"], ["updated_at", "2021-10-27 13:28:08.349508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 13:28:08.351105"], ["updated_at", "2021-10-27 13:28:08.351105"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 13:28:08.352671"], ["updated_at", "2021-10-27 13:28:08.352671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 13:28:08.354180"], ["updated_at", "2021-10-27 13:28:08.354180"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 13:28:08.355690"], ["updated_at", "2021-10-27 13:28:08.355690"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/44/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"44"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 44], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.362526"], ["updated_at", "2021-10-27 13:28:08.362526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.363582"], ["updated_at", "2021-10-27 13:28:08.363582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 13:28:08.365514"], ["updated_at", "2021-10-27 13:28:08.365514"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 13:28:08.367795"], ["updated_at", "2021-10-27 13:28:08.367795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 13:28:08.369034"], ["updated_at", "2021-10-27 13:28:08.369034"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 13:28:08.370208"], ["updated_at", "2021-10-27 13:28:08.370208"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 13:28:08.371300"], ["updated_at", "2021-10-27 13:28:08.371300"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/46/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"46"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices/46/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"46"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.9ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')  [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.1ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.386204"], ["updated_at", "2021-10-27 13:28:08.386204"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.387470"], ["updated_at", "2021-10-27 13:28:08.387470"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 13:28:08.389074"], ["updated_at", "2021-10-27 13:28:08.389074"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 13:28:08.390377"], ["updated_at", "2021-10-27 13:28:08.390377"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 13:28:08.392007"], ["updated_at", "2021-10-27 13:28:08.392007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 13:28:08.393448"], ["updated_at", "2021-10-27 13:28:08.393448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 13:28:08.394883"], ["updated_at", "2021-10-27 13:28:08.394883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/49/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"49"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms) Started GET “/veterinary_offices/49/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"49"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:08.413997"], ["updated_at", "2021-10-27 13:28:08.413997"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 116], ["created_at", "2021-10-27 13:28:08.416163"], ["updated_at", "2021-10-27 13:28:08.416163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 116], ["created_at", "2021-10-27 13:28:08.417342"], ["updated_at", "2021-10-27 13:28:08.417342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 116], ["created_at", "2021-10-27 13:28:08.418376"], ["updated_at", "2021-10-27 13:28:08.418376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:08.419633"], ["updated_at", "2021-10-27 13:28:08.419633"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 219], ["application_id", 64], ["created_at", "2021-10-27 13:28:08.421286"], ["updated_at", "2021-10-27 13:28:08.421286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 220], ["application_id", 64], ["created_at", "2021-10-27 13:28:08.422622"], ["updated_at", "2021-10-27 13:28:08.422622"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 64)
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 64)
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:08.429284"], ["updated_at", "2021-10-27 13:28:08.429284"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 117], ["created_at", "2021-10-27 13:28:08.430556"], ["updated_at", "2021-10-27 13:28:08.430556"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 117], ["created_at", "2021-10-27 13:28:08.431990"], ["updated_at", "2021-10-27 13:28:08.431990"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 117], ["created_at", "2021-10-27 13:28:08.433009"], ["updated_at", "2021-10-27 13:28:08.433009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:08.433897"], ["updated_at", "2021-10-27 13:28:08.433897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 222], ["application_id", 65], ["created_at", "2021-10-27 13:28:08.435616"], ["updated_at", "2021-10-27 13:28:08.435616"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 223], ["application_id", 65], ["created_at", "2021-10-27 13:28:08.436838"], ["updated_at", "2021-10-27 13:28:08.436838"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:08.438828"], ["updated_at", "2021-10-27 13:28:08.438828"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 118], ["created_at", "2021-10-27 13:28:08.440187"], ["updated_at", "2021-10-27 13:28:08.440187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 118], ["created_at", "2021-10-27 13:28:08.441254"], ["updated_at", "2021-10-27 13:28:08.441254"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 118], ["created_at", "2021-10-27 13:28:08.442330"], ["updated_at", "2021-10-27 13:28:08.442330"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:08.443517"], ["updated_at", "2021-10-27 13:28:08.443517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 225], ["application_id", 66], ["created_at", "2021-10-27 13:28:08.445053"], ["updated_at", "2021-10-27 13:28:08.445053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 226], ["application_id", 66], ["created_at", "2021-10-27 13:28:08.446302"], ["updated_at", "2021-10-27 13:28:08.446302"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.448821"], ["updated_at", "2021-10-27 13:28:08.448821"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 119], ["created_at", "2021-10-27 13:28:08.450083"], ["updated_at", "2021-10-27 13:28:08.450083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 119], ["created_at", "2021-10-27 13:28:08.451519"], ["updated_at", "2021-10-27 13:28:08.451519"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 119], ["created_at", "2021-10-27 13:28:08.452660"], ["updated_at", "2021-10-27 13:28:08.452660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.457224"], ["updated_at", "2021-10-27 13:28:08.457224"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 120], ["created_at", "2021-10-27 13:28:08.458790"], ["updated_at", "2021-10-27 13:28:08.458790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 120], ["created_at", "2021-10-27 13:28:08.459961"], ["updated_at", "2021-10-27 13:28:08.459961"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 120], ["created_at", "2021-10-27 13:28:08.461048"], ["updated_at", "2021-10-27 13:28:08.461048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.462660"], ["updated_at", "2021-10-27 13:28:08.462660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 121], ["created_at", "2021-10-27 13:28:08.463849"], ["updated_at", "2021-10-27 13:28:08.463849"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 121], ["created_at", "2021-10-27 13:28:08.464952"], ["updated_at", "2021-10-27 13:28:08.464952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 121], ["created_at", "2021-10-27 13:28:08.466027"], ["updated_at", "2021-10-27 13:28:08.466027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.468726"], ["updated_at", "2021-10-27 13:28:08.468726"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 122], ["created_at", "2021-10-27 13:28:08.470145"], ["updated_at", "2021-10-27 13:28:08.470145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 122], ["created_at", "2021-10-27 13:28:08.471341"], ["updated_at", "2021-10-27 13:28:08.471341"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 122], ["created_at", "2021-10-27 13:28:08.472442"], ["updated_at", "2021-10-27 13:28:08.472442"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.478303"], ["updated_at", "2021-10-27 13:28:08.478303"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 123], ["created_at", "2021-10-27 13:28:08.480140"], ["updated_at", "2021-10-27 13:28:08.480140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 123], ["created_at", "2021-10-27 13:28:08.481486"], ["updated_at", "2021-10-27 13:28:08.481486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 123], ["created_at", "2021-10-27 13:28:08.482535"], ["updated_at", "2021-10-27 13:28:08.482535"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.486900"], ["updated_at", "2021-10-27 13:28:08.486900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 124], ["created_at", "2021-10-27 13:28:08.488768"], ["updated_at", "2021-10-27 13:28:08.488768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 124], ["created_at", "2021-10-27 13:28:08.489923"], ["updated_at", "2021-10-27 13:28:08.489923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 124], ["created_at", "2021-10-27 13:28:08.490952"], ["updated_at", "2021-10-27 13:28:08.490952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.493984"], ["updated_at", "2021-10-27 13:28:08.493984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 125], ["created_at", "2021-10-27 13:28:08.495281"], ["updated_at", "2021-10-27 13:28:08.495281"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 125], ["created_at", "2021-10-27 13:28:08.497083"], ["updated_at", "2021-10-27 13:28:08.497083"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 125], ["created_at", "2021-10-27 13:28:08.498548"], ["updated_at", "2021-10-27 13:28:08.498548"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.501158"], ["updated_at", "2021-10-27 13:28:08.501158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 126], ["created_at", "2021-10-27 13:28:08.502842"], ["updated_at", "2021-10-27 13:28:08.502842"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 126], ["created_at", "2021-10-27 13:28:08.504292"], ["updated_at", "2021-10-27 13:28:08.504292"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 126], ["created_at", "2021-10-27 13:28:08.505656"], ["updated_at", "2021-10-27 13:28:08.505656"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.508259"], ["updated_at", "2021-10-27 13:28:08.508259"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 127], ["created_at", "2021-10-27 13:28:08.509644"], ["updated_at", "2021-10-27 13:28:08.509644"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 127], ["created_at", "2021-10-27 13:28:08.511131"], ["updated_at", "2021-10-27 13:28:08.511131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 127], ["created_at", "2021-10-27 13:28:08.513476"], ["updated_at", "2021-10-27 13:28:08.513476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.515396"], ["updated_at", "2021-10-27 13:28:08.515396"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.516249"], ["updated_at", "2021-10-27 13:28:08.516249"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.517009"], ["updated_at", "2021-10-27 13:28:08.517009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 128], ["created_at", "2021-10-27 13:28:08.518090"], ["updated_at", "2021-10-27 13:28:08.518090"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 128], ["created_at", "2021-10-27 13:28:08.519065"], ["updated_at", "2021-10-27 13:28:08.519065"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 130], ["created_at", "2021-10-27 13:28:08.520103"], ["updated_at", "2021-10-27 13:28:08.520103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 128], ["created_at", "2021-10-27 13:28:08.521175"], ["updated_at", "2021-10-27 13:28:08.521175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.523255"], ["updated_at", "2021-10-27 13:28:08.523255"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.524139"], ["updated_at", "2021-10-27 13:28:08.524139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.524955"], ["updated_at", "2021-10-27 13:28:08.524955"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 131], ["created_at", "2021-10-27 13:28:08.526316"], ["updated_at", "2021-10-27 13:28:08.526316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 131], ["created_at", "2021-10-27 13:28:08.527934"], ["updated_at", "2021-10-27 13:28:08.527934"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 133], ["created_at", "2021-10-27 13:28:08.529390"], ["updated_at", "2021-10-27 13:28:08.529390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 131], ["created_at", "2021-10-27 13:28:08.531072"], ["updated_at", "2021-10-27 13:28:08.531072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.536597"], ["updated_at", "2021-10-27 13:28:08.536597"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.537627"], ["updated_at", "2021-10-27 13:28:08.537627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.538579"], ["updated_at", "2021-10-27 13:28:08.538579"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 134], ["created_at", "2021-10-27 13:28:08.539942"], ["updated_at", "2021-10-27 13:28:08.539942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 134], ["created_at", "2021-10-27 13:28:08.541723"], ["updated_at", "2021-10-27 13:28:08.541723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 136], ["created_at", "2021-10-27 13:28:08.543030"], ["updated_at", "2021-10-27 13:28:08.543030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 134], ["created_at", "2021-10-27 13:28:08.544233"], ["updated_at", "2021-10-27 13:28:08.544233"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.550316"], ["updated_at", "2021-10-27 13:28:08.550316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.551525"], ["updated_at", "2021-10-27 13:28:08.551525"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.553244"], ["updated_at", "2021-10-27 13:28:08.553244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 137], ["created_at", "2021-10-27 13:28:08.555017"], ["updated_at", "2021-10-27 13:28:08.555017"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 137], ["created_at", "2021-10-27 13:28:08.556300"], ["updated_at", "2021-10-27 13:28:08.556300"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 139], ["created_at", "2021-10-27 13:28:08.557536"], ["updated_at", "2021-10-27 13:28:08.557536"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 137], ["created_at", "2021-10-27 13:28:08.558574"], ["updated_at", "2021-10-27 13:28:08.558574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.562684"], ["updated_at", "2021-10-27 13:28:08.562684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.564234"], ["updated_at", "2021-10-27 13:28:08.564234"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.566055"], ["updated_at", "2021-10-27 13:28:08.566055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 140], ["created_at", "2021-10-27 13:28:08.567868"], ["updated_at", "2021-10-27 13:28:08.567868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 140], ["created_at", "2021-10-27 13:28:08.569188"], ["updated_at", "2021-10-27 13:28:08.569188"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 142], ["created_at", "2021-10-27 13:28:08.570630"], ["updated_at", "2021-10-27 13:28:08.570630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 140], ["created_at", "2021-10-27 13:28:08.571784"], ["updated_at", "2021-10-27 13:28:08.571784"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.577434"], ["updated_at", "2021-10-27 13:28:08.577434"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.578668"], ["updated_at", "2021-10-27 13:28:08.578668"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.579633"], ["updated_at", "2021-10-27 13:28:08.579633"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 143], ["created_at", "2021-10-27 13:28:08.581576"], ["updated_at", "2021-10-27 13:28:08.581576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 143], ["created_at", "2021-10-27 13:28:08.582679"], ["updated_at", "2021-10-27 13:28:08.582679"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 145], ["created_at", "2021-10-27 13:28:08.583779"], ["updated_at", "2021-10-27 13:28:08.583779"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 143], ["created_at", "2021-10-27 13:28:08.584949"], ["updated_at", "2021-10-27 13:28:08.584949"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.587482"], ["updated_at", "2021-10-27 13:28:08.587482"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.588396"], ["updated_at", "2021-10-27 13:28:08.588396"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.589509"], ["updated_at", "2021-10-27 13:28:08.589509"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 146], ["created_at", "2021-10-27 13:28:08.590877"], ["updated_at", "2021-10-27 13:28:08.590877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 146], ["created_at", "2021-10-27 13:28:08.592014"], ["updated_at", "2021-10-27 13:28:08.592014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 148], ["created_at", "2021-10-27 13:28:08.593138"], ["updated_at", "2021-10-27 13:28:08.593138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (3.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 146], ["created_at", "2021-10-27 13:28:08.594205"], ["updated_at", "2021-10-27 13:28:08.594205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.599774"], ["updated_at", "2021-10-27 13:28:08.599774"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.600905"], ["updated_at", "2021-10-27 13:28:08.600905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.601973"], ["updated_at", "2021-10-27 13:28:08.601973"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 149], ["created_at", "2021-10-27 13:28:08.603216"], ["updated_at", "2021-10-27 13:28:08.603216"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 149], ["created_at", "2021-10-27 13:28:08.604341"], ["updated_at", "2021-10-27 13:28:08.604341"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 151], ["created_at", "2021-10-27 13:28:08.605977"], ["updated_at", "2021-10-27 13:28:08.605977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 149], ["created_at", "2021-10-27 13:28:08.607145"], ["updated_at", "2021-10-27 13:28:08.607145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.4ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.610593"], ["updated_at", "2021-10-27 13:28:08.610593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.611505"], ["updated_at", "2021-10-27 13:28:08.611505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.612661"], ["updated_at", "2021-10-27 13:28:08.612661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 152], ["created_at", "2021-10-27 13:28:08.613995"], ["updated_at", "2021-10-27 13:28:08.613995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 152], ["created_at", "2021-10-27 13:28:08.615289"], ["updated_at", "2021-10-27 13:28:08.615289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 154], ["created_at", "2021-10-27 13:28:08.616829"], ["updated_at", "2021-10-27 13:28:08.616829"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 152], ["created_at", "2021-10-27 13:28:08.618007"], ["updated_at", "2021-10-27 13:28:08.618007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 152], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.620498"], ["updated_at", "2021-10-27 13:28:08.620498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.621525"], ["updated_at", "2021-10-27 13:28:08.621525"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.622537"], ["updated_at", "2021-10-27 13:28:08.622537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 155], ["created_at", "2021-10-27 13:28:08.624049"], ["updated_at", "2021-10-27 13:28:08.624049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 155], ["created_at", "2021-10-27 13:28:08.625818"], ["updated_at", "2021-10-27 13:28:08.625818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 157], ["created_at", "2021-10-27 13:28:08.627326"], ["updated_at", "2021-10-27 13:28:08.627326"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 155], ["created_at", "2021-10-27 13:28:08.628524"], ["updated_at", "2021-10-27 13:28:08.628524"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 155], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.631183"], ["updated_at", "2021-10-27 13:28:08.631183"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.632221"], ["updated_at", "2021-10-27 13:28:08.632221"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.633272"], ["updated_at", "2021-10-27 13:28:08.633272"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 158], ["created_at", "2021-10-27 13:28:08.634630"], ["updated_at", "2021-10-27 13:28:08.634630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 158], ["created_at", "2021-10-27 13:28:08.635915"], ["updated_at", "2021-10-27 13:28:08.635915"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 160], ["created_at", "2021-10-27 13:28:08.637216"], ["updated_at", "2021-10-27 13:28:08.637216"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 158], ["created_at", "2021-10-27 13:28:08.638278"], ["updated_at", "2021-10-27 13:28:08.638278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 158], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.641785"], ["updated_at", "2021-10-27 13:28:08.641785"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.643117"], ["updated_at", "2021-10-27 13:28:08.643117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.644025"], ["updated_at", "2021-10-27 13:28:08.644025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 161], ["created_at", "2021-10-27 13:28:08.645436"], ["updated_at", "2021-10-27 13:28:08.645436"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 161], ["created_at", "2021-10-27 13:28:08.646609"], ["updated_at", "2021-10-27 13:28:08.646609"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 163], ["created_at", "2021-10-27 13:28:08.647685"], ["updated_at", "2021-10-27 13:28:08.647685"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 161], ["created_at", "2021-10-27 13:28:08.648632"], ["updated_at", "2021-10-27 13:28:08.648632"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 161]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.650871"], ["updated_at", "2021-10-27 13:28:08.650871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 13:28:08.652153"], ["updated_at", "2021-10-27 13:28:08.652153"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 13:28:08.653409"], ["updated_at", "2021-10-27 13:28:08.653409"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 13:28:08.654365"], ["updated_at", "2021-10-27 13:28:08.654365"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 13:28:08.655349"], ["updated_at", "2021-10-27 13:28:08.655349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.659027"], ["updated_at", "2021-10-27 13:28:08.659027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 13:28:08.660648"], ["updated_at", "2021-10-27 13:28:08.660648"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 13:28:08.661698"], ["updated_at", "2021-10-27 13:28:08.661698"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 13:28:08.662683"], ["updated_at", "2021-10-27 13:28:08.662683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 13:28:08.663659"], ["updated_at", "2021-10-27 13:28:08.663659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.668883"], ["updated_at", "2021-10-27 13:28:08.668883"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 13:28:08.670088"], ["updated_at", "2021-10-27 13:28:08.670088"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 13:28:08.671168"], ["updated_at", "2021-10-27 13:28:08.671168"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 13:28:08.672315"], ["updated_at", "2021-10-27 13:28:08.672315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 13:28:08.673712"], ["updated_at", "2021-10-27 13:28:08.673712"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.677551"], ["updated_at", "2021-10-27 13:28:08.677551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 13:28:08.678871"], ["updated_at", "2021-10-27 13:28:08.678871"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 13:28:08.680295"], ["updated_at", "2021-10-27 13:28:08.680295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 13:28:08.681836"], ["updated_at", "2021-10-27 13:28:08.681836"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 13:28:08.683201"], ["updated_at", "2021-10-27 13:28:08.683201"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.686411"], ["updated_at", "2021-10-27 13:28:08.686411"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 13:28:08.688101"], ["updated_at", "2021-10-27 13:28:08.688101"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 13:28:08.689417"], ["updated_at", "2021-10-27 13:28:08.689417"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 13:28:08.690454"], ["updated_at", "2021-10-27 13:28:08.690454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 13:28:08.691478"], ["updated_at", "2021-10-27 13:28:08.691478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.693791"], ["updated_at", "2021-10-27 13:28:08.693791"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 13:28:08.694893"], ["updated_at", "2021-10-27 13:28:08.694893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 13:28:08.696044"], ["updated_at", "2021-10-27 13:28:08.696044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 13:28:08.697031"], ["updated_at", "2021-10-27 13:28:08.697031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 13:28:08.698052"], ["updated_at", "2021-10-27 13:28:08.698052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.700617"], ["updated_at", "2021-10-27 13:28:08.700617"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 13:28:08.702371"], ["updated_at", "2021-10-27 13:28:08.702371"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 13:28:08.704030"], ["updated_at", "2021-10-27 13:28:08.704030"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 13:28:08.705174"], ["updated_at", "2021-10-27 13:28:08.705174"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 13:28:08.706220"], ["updated_at", "2021-10-27 13:28:08.706220"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.708135"], ["updated_at", "2021-10-27 13:28:08.708135"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.709053"], ["updated_at", "2021-10-27 13:28:08.709053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 13:28:08.710497"], ["updated_at", "2021-10-27 13:28:08.710497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 13:28:08.711907"], ["updated_at", "2021-10-27 13:28:08.711907"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 13:28:08.713367"], ["updated_at", "2021-10-27 13:28:08.713367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 58], ["created_at", "2021-10-27 13:28:08.714820"], ["updated_at", "2021-10-27 13:28:08.714820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.717159"], ["updated_at", "2021-10-27 13:28:08.717159"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.718290"], ["updated_at", "2021-10-27 13:28:08.718290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 13:28:08.719715"], ["updated_at", "2021-10-27 13:28:08.719715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 13:28:08.721026"], ["updated_at", "2021-10-27 13:28:08.721026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 13:28:08.722280"], ["updated_at", "2021-10-27 13:28:08.722280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 60], ["created_at", "2021-10-27 13:28:08.724006"], ["updated_at", "2021-10-27 13:28:08.724006"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.729195"], ["updated_at", "2021-10-27 13:28:08.729195"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.730208"], ["updated_at", "2021-10-27 13:28:08.730208"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 13:28:08.731818"], ["updated_at", "2021-10-27 13:28:08.731818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 13:28:08.733367"], ["updated_at", "2021-10-27 13:28:08.733367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 13:28:08.734625"], ["updated_at", "2021-10-27 13:28:08.734625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 62], ["created_at", "2021-10-27 13:28:08.735833"], ["updated_at", "2021-10-27 13:28:08.735833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.739507"], ["updated_at", "2021-10-27 13:28:08.739507"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.740474"], ["updated_at", "2021-10-27 13:28:08.740474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 13:28:08.742078"], ["updated_at", "2021-10-27 13:28:08.742078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 13:28:08.744770"], ["updated_at", "2021-10-27 13:28:08.744770"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (5.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 13:28:08.763717"], ["updated_at", "2021-10-27 13:28:08.763717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 64], ["created_at", "2021-10-27 13:28:08.770777"], ["updated_at", "2021-10-27 13:28:08.770777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.774078"], ["updated_at", "2021-10-27 13:28:08.774078"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.775177"], ["updated_at", "2021-10-27 13:28:08.775177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 13:28:08.776743"], ["updated_at", "2021-10-27 13:28:08.776743"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 13:28:08.778242"], ["updated_at", "2021-10-27 13:28:08.778242"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 13:28:08.779526"], ["updated_at", "2021-10-27 13:28:08.779526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 66], ["created_at", "2021-10-27 13:28:08.781028"], ["updated_at", "2021-10-27 13:28:08.781028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.5ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.783842"], ["updated_at", "2021-10-27 13:28:08.783842"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.784797"], ["updated_at", "2021-10-27 13:28:08.784797"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 13:28:08.786165"], ["updated_at", "2021-10-27 13:28:08.786165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 13:28:08.787776"], ["updated_at", "2021-10-27 13:28:08.787776"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 13:28:08.789058"], ["updated_at", "2021-10-27 13:28:08.789058"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 68], ["created_at", "2021-10-27 13:28:08.790650"], ["updated_at", "2021-10-27 13:28:08.790650"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.792953"], ["updated_at", "2021-10-27 13:28:08.792953"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.793973"], ["updated_at", "2021-10-27 13:28:08.793973"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 13:28:08.795555"], ["updated_at", "2021-10-27 13:28:08.795555"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 13:28:08.796866"], ["updated_at", "2021-10-27 13:28:08.796866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 13:28:08.798266"], ["updated_at", "2021-10-27 13:28:08.798266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 70], ["created_at", "2021-10-27 13:28:08.799806"], ["updated_at", "2021-10-27 13:28:08.799806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.7ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.802506"], ["updated_at", "2021-10-27 13:28:08.802506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.803586"], ["updated_at", "2021-10-27 13:28:08.803586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 13:28:08.804852"], ["updated_at", "2021-10-27 13:28:08.804852"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 13:28:08.806385"], ["updated_at", "2021-10-27 13:28:08.806385"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 13:28:08.807900"], ["updated_at", "2021-10-27 13:28:08.807900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 72], ["created_at", "2021-10-27 13:28:08.809177"], ["updated_at", "2021-10-27 13:28:08.809177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 71]]
 (0.2ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 72]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.812712"], ["updated_at", "2021-10-27 13:28:08.812712"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.813715"], ["updated_at", "2021-10-27 13:28:08.813715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 13:28:08.815258"], ["updated_at", "2021-10-27 13:28:08.815258"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 13:28:08.816537"], ["updated_at", "2021-10-27 13:28:08.816537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 13:28:08.818006"], ["updated_at", "2021-10-27 13:28:08.818006"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 74], ["created_at", "2021-10-27 13:28:08.819545"], ["updated_at", "2021-10-27 13:28:08.819545"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 73], ["on_call", true]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.821995"], ["updated_at", "2021-10-27 13:28:08.821995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.823130"], ["updated_at", "2021-10-27 13:28:08.823130"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 13:28:08.824662"], ["updated_at", "2021-10-27 13:28:08.824662"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 13:28:08.826159"], ["updated_at", "2021-10-27 13:28:08.826159"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 13:28:08.827461"], ["updated_at", "2021-10-27 13:28:08.827461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 76], ["created_at", "2021-10-27 13:28:08.828749"], ["updated_at", "2021-10-27 13:28:08.828749"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 75], ["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.831486"], ["updated_at", "2021-10-27 13:28:08.831486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.832699"], ["updated_at", "2021-10-27 13:28:08.832699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 13:28:08.834345"], ["updated_at", "2021-10-27 13:28:08.834345"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 13:28:08.836072"], ["updated_at", "2021-10-27 13:28:08.836072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 13:28:08.837719"], ["updated_at", "2021-10-27 13:28:08.837719"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 78], ["created_at", "2021-10-27 13:28:08.839424"], ["updated_at", "2021-10-27 13:28:08.839424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)  [["veterinary_office_id", 77], ["on_call", true]]
 (0.1ms)  ROLLBACK
 (1.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.4ms)

Completed 200 OK in 86ms (Views: 83.0ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (5.6ms)

Completed 200 OK in 10ms (Views: 5.7ms | ActiveRecord: 3.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (1.6ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (2.4ms)

Completed 200 OK in 9ms (Views: 1.6ms | ActiveRecord: 5.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.8ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 3.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (1.0ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (1.8ms)

Completed 200 OK in 6ms (Views: 1.7ms | ActiveRecord: 3.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:04.845260"], ["updated_at", "2021-10-27 13:30:04.845260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 164], ["created_at", "2021-10-27 13:30:04.884902"], ["updated_at", "2021-10-27 13:30:04.884902"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 164], ["created_at", "2021-10-27 13:30:04.887143"], ["updated_at", "2021-10-27 13:30:04.887143"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 164], ["created_at", "2021-10-27 13:30:04.888502"], ["updated_at", "2021-10-27 13:30:04.888502"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:04.906480"], ["updated_at", "2021-10-27 13:30:04.906480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 303], ["application_id", 67], ["created_at", "2021-10-27 13:30:04.923533"], ["updated_at", "2021-10-27 13:30:04.923533"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 304], ["application_id", 67], ["created_at", "2021-10-27 13:30:04.925906"], ["updated_at", "2021-10-27 13:30:04.925906"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/67” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"67"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)
Rendered applications/show.html.erb within layouts/application (5.1ms)

Completed 200 OK in 9ms (Views: 4.5ms | ActiveRecord: 1.9ms) Started GET “/pets/303” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"303"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 303], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 164], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/67” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"67"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)
Rendered applications/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.2ms) Started GET “/pets/304” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"304"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 304], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 164], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:04.957047"], ["updated_at", "2021-10-27 13:30:04.957047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 165], ["created_at", "2021-10-27 13:30:04.958541"], ["updated_at", "2021-10-27 13:30:04.958541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 165], ["created_at", "2021-10-27 13:30:04.959750"], ["updated_at", "2021-10-27 13:30:04.959750"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 165], ["created_at", "2021-10-27 13:30:04.960873"], ["updated_at", "2021-10-27 13:30:04.960873"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:04.962051"], ["updated_at", "2021-10-27 13:30:04.962051"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/68” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"68"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
Rendered applications/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.1ms) Started GET “/applications/68?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"68"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.1ms)

Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 1.6ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:04.983539"], ["updated_at", "2021-10-27 13:30:04.983539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 166], ["created_at", "2021-10-27 13:30:04.984891"], ["updated_at", "2021-10-27 13:30:04.984891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:04.986109"], ["updated_at", "2021-10-27 13:30:04.986109"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/69” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"69"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.9ms) Started GET “/applications/69?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"69"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.9ms) Started POST “/application_pets?app_id=69&pet_id=309” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"69", "pet_id"=>"309"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 309], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 309], ["application_id", 69], ["created_at", "2021-10-27 13:30:05.004399"], ["updated_at", "2021-10-27 13:30:05.004399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/69 Completed 302 Found in 4ms (ActiveRecord: 1.7ms) Started GET “/applications/69” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"69"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
Rendered applications/show.html.erb within layouts/application (2.1ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 1.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:05.012545"], ["updated_at", "2021-10-27 13:30:05.012545"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 167], ["created_at", "2021-10-27 13:30:05.014159"], ["updated_at", "2021-10-27 13:30:05.014159"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 167], ["created_at", "2021-10-27 13:30:05.015595"], ["updated_at", "2021-10-27 13:30:05.015595"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 167], ["created_at", "2021-10-27 13:30:05.016914"], ["updated_at", "2021-10-27 13:30:05.016914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:05.018099"], ["updated_at", "2021-10-27 13:30:05.018099"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/70” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"70"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
Rendered applications/show.html.erb within layouts/application (2.0ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 1.3ms) Started GET “/applications/70?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"70"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (2.1ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 1.3ms) Started POST “/application_pets?app_id=70&pet_id=312” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"70", "pet_id"=>"312"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 312], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 312], ["application_id", 70], ["created_at", "2021-10-27 13:30:05.033748"], ["updated_at", "2021-10-27 13:30:05.033748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/70 Completed 302 Found in 3ms (ActiveRecord: 1.5ms) Started GET “/applications/70” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"70"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 1.2ms) Started PATCH “/applications/70” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#update as HTML

Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"70"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.6ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "Pending"], ["updated_at", "2021-10-27 13:30:05.045103"], ["id", 70]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/70 Completed 302 Found in 2ms (ActiveRecord: 1.1ms) Started GET “/applications/70” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"70"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:05.061720"], ["updated_at", "2021-10-27 13:30:05.061720"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/71” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"71"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.2ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.069982"], ["updated_at", "2021-10-27 13:30:05.069982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/168/pets/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"168"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 168], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.2ms)

 (0.3ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.080098"], ["updated_at", "2021-10-27 13:30:05.080098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/169/pets/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"169"}
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 169], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms) Started POST “/shelters/169/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"169"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 169], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 169], ["created_at", "2021-10-27 13:30:05.091209"], ["updated_at", "2021-10-27 13:30:05.091209"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/169/pets Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET “/shelters/169/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"169"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 169], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 169], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.2ms)

Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.100687"], ["updated_at", "2021-10-27 13:30:05.100687"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/170/pets/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"170"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 170], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms) Started POST “/shelters/170/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"170"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 170], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/170/pets/new Completed 302 Found in 3ms (ActiveRecord: 0.4ms) Started GET “/shelters/170/pets/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"170"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 170], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.116662"], ["updated_at", "2021-10-27 13:30:05.116662"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 171], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 171], ["created_at", "2021-10-27 13:30:05.118669"], ["updated_at", "2021-10-27 13:30:05.118669"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 171], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 171], ["created_at", "2021-10-27 13:30:05.120188"], ["updated_at", "2021-10-27 13:30:05.120188"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 171], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 171], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.134492"], ["updated_at", "2021-10-27 13:30:05.134492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 172], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 172], ["created_at", "2021-10-27 13:30:05.136901"], ["updated_at", "2021-10-27 13:30:05.136901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 172], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 172], ["created_at", "2021-10-27 13:30:05.138853"], ["updated_at", "2021-10-27 13:30:05.138853"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 172], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 172], ["created_at", "2021-10-27 13:30:05.140661"], ["updated_at", "2021-10-27 13:30:05.140661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 172], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 172], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.4ms)

Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.5ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.153048"], ["updated_at", "2021-10-27 13:30:05.153048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 173], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 173], ["created_at", "2021-10-27 13:30:05.157645"], ["updated_at", "2021-10-27 13:30:05.157645"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 173], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 173], ["created_at", "2021-10-27 13:30:05.159670"], ["updated_at", "2021-10-27 13:30:05.159670"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 173], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 173], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.5ms) Started GET “/pets/319/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"319"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 319], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.174741"], ["updated_at", "2021-10-27 13:30:05.174741"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 174], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 174], ["created_at", "2021-10-27 13:30:05.176923"], ["updated_at", "2021-10-27 13:30:05.176923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 174], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 174], ["created_at", "2021-10-27 13:30:05.178723"], ["updated_at", "2021-10-27 13:30:05.178723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 174], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 174], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.5ms) Started DELETE “/pets/321” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"321"}
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 321], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.1ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 321]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 1.8ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 174], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.207369"], ["updated_at", "2021-10-27 13:30:05.207369"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 175], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 175], ["created_at", "2021-10-27 13:30:05.209514"], ["updated_at", "2021-10-27 13:30:05.209514"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 175], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 175], ["created_at", "2021-10-27 13:30:05.211500"], ["updated_at", "2021-10-27 13:30:05.211500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 175], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 175], ["created_at", "2021-10-27 13:30:05.214022"], ["updated_at", "2021-10-27 13:30:05.214022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 175], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 175], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 175], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.9ms)

Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 175], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 175], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.7ms)

Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:05.258573"], ["updated_at", "2021-10-27 13:30:05.258573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.5ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-27 13:30:05.260004"], ["id", 72]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/72 Completed 302 Found in 3ms (ActiveRecord: 1.6ms) Started GET “/applications/72” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"72"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)
Rendered applications/show.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.3ms)

Application Load (0.5ms)  SELECT  "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1  [["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.271120"], ["updated_at", "2021-10-27 13:30:05.271120"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 176], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 176], ["created_at", "2021-10-27 13:30:05.272876"], ["updated_at", "2021-10-27 13:30:05.272876"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/326” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"326"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 326], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 176], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.280408"], ["updated_at", "2021-10-27 13:30:05.280408"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 177], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 177], ["created_at", "2021-10-27 13:30:05.282132"], ["updated_at", "2021-10-27 13:30:05.282132"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/327” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"327"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 327], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 177], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms) Started DELETE “/pets/327” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"327"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 327], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.9ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 327]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-27 13:30:05.293373"], ["updated_at", "2021-10-27 13:30:05.293373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 178], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 178], ["created_at", "2021-10-27 13:30:05.295203"], ["updated_at", "2021-10-27 13:30:05.295203"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/328/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"328"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 328], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 13:30:05.301526"], ["updated_at", "2021-10-27 13:30:05.301526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 179], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 179], ["created_at", "2021-10-27 13:30:05.303114"], ["updated_at", "2021-10-27 13:30:05.303114"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/329/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"329"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 329], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/pets/329” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"329"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 329], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 179], ["LIMIT", 1]]
Pet Update (0.6ms)  UPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6  [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-27 13:30:05.312115"], ["id", 329]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets/329 Completed 302 Found in 3ms (ActiveRecord: 1.1ms) Started GET “/pets/329” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"329"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 329], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 179], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 13:30:05.318626"], ["updated_at", "2021-10-27 13:30:05.318626"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 180], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 180], ["created_at", "2021-10-27 13:30:05.320182"], ["updated_at", "2021-10-27 13:30:05.320182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/330/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"330"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 330], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/pets/330” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"330"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 330], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 180], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/pets/330/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/pets/330/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"330"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 330], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Shelter", "city"=>"Houston", "foster_program"=>"1", "rank"=>"7", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Houston Shelter"], ["city", "Houston"], ["rank", 7], ["created_at", "2021-10-27 13:30:05.348962"], ["updated_at", "2021-10-27 13:30:05.348962"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"", "foster_program"=>"0", "rank"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/shelters/new Completed 302 Found in 3ms (ActiveRecord: 0.3ms) Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.367861"], ["updated_at", "2021-10-27 13:30:05.367861"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.369256"], ["updated_at", "2021-10-27 13:30:05.369256"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.370088"], ["updated_at", "2021-10-27 13:30:05.370088"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 182], ["created_at", "2021-10-27 13:30:05.371214"], ["updated_at", "2021-10-27 13:30:05.371214"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 182], ["created_at", "2021-10-27 13:30:05.372260"], ["updated_at", "2021-10-27 13:30:05.372260"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 184], ["created_at", "2021-10-27 13:30:05.373690"], ["updated_at", "2021-10-27 13:30:05.373690"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.381392"], ["updated_at", "2021-10-27 13:30:05.381392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.382630"], ["updated_at", "2021-10-27 13:30:05.382630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.383751"], ["updated_at", "2021-10-27 13:30:05.383751"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 185], ["created_at", "2021-10-27 13:30:05.387549"], ["updated_at", "2021-10-27 13:30:05.387549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 185], ["created_at", "2021-10-27 13:30:05.389283"], ["updated_at", "2021-10-27 13:30:05.389283"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 187], ["created_at", "2021-10-27 13:30:05.390680"], ["updated_at", "2021-10-27 13:30:05.390680"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.398545"], ["updated_at", "2021-10-27 13:30:05.398545"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.399696"], ["updated_at", "2021-10-27 13:30:05.399696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.400799"], ["updated_at", "2021-10-27 13:30:05.400799"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 188], ["created_at", "2021-10-27 13:30:05.402355"], ["updated_at", "2021-10-27 13:30:05.402355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 188], ["created_at", "2021-10-27 13:30:05.403439"], ["updated_at", "2021-10-27 13:30:05.403439"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 190], ["created_at", "2021-10-27 13:30:05.404770"], ["updated_at", "2021-10-27 13:30:05.404770"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/shelters?sort=pet_count” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Parameters: {"sort"=>"pet_count"}
Rendering shelters/index.html.erb within layouts/application
Shelter Load (1.5ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
Rendered shelters/index.html.erb within layouts/application (2.2ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.415815"], ["updated_at", "2021-10-27 13:30:05.415815"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.416952"], ["updated_at", "2021-10-27 13:30:05.416952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.417914"], ["updated_at", "2021-10-27 13:30:05.417914"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 191], ["created_at", "2021-10-27 13:30:05.419160"], ["updated_at", "2021-10-27 13:30:05.419160"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 191], ["created_at", "2021-10-27 13:30:05.420258"], ["updated_at", "2021-10-27 13:30:05.420258"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 193], ["created_at", "2021-10-27 13:30:05.421548"], ["updated_at", "2021-10-27 13:30:05.421548"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/shelters/191/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"191"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 191], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.9ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.433179"], ["updated_at", "2021-10-27 13:30:05.433179"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.434274"], ["updated_at", "2021-10-27 13:30:05.434274"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.435227"], ["updated_at", "2021-10-27 13:30:05.435227"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 194], ["created_at", "2021-10-27 13:30:05.436383"], ["updated_at", "2021-10-27 13:30:05.436383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 194], ["created_at", "2021-10-27 13:30:05.437419"], ["updated_at", "2021-10-27 13:30:05.437419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 196], ["created_at", "2021-10-27 13:30:05.438480"], ["updated_at", "2021-10-27 13:30:05.438480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started DELETE “/shelters/194” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#destroy as HTML

Parameters: {"id"=>"194"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 194], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 194]]
Pet Destroy (0.8ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 343]]
Pet Destroy (0.5ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 344]]
Shelter Destroy (0.4ms)  DELETE FROM "shelters" WHERE "shelters"."id" = $1  [["id", 194]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 4ms (ActiveRecord: 2.4ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.455572"], ["updated_at", "2021-10-27 13:30:05.455572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.456743"], ["updated_at", "2021-10-27 13:30:05.456743"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.457658"], ["updated_at", "2021-10-27 13:30:05.457658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 197], ["created_at", "2021-10-27 13:30:05.458781"], ["updated_at", "2021-10-27 13:30:05.458781"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 197], ["created_at", "2021-10-27 13:30:05.459958"], ["updated_at", "2021-10-27 13:30:05.459958"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 199], ["created_at", "2021-10-27 13:30:05.461209"], ["updated_at", "2021-10-27 13:30:05.461209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.466908"], ["updated_at", "2021-10-27 13:30:05.466908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.468342"], ["updated_at", "2021-10-27 13:30:05.468342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.469297"], ["updated_at", "2021-10-27 13:30:05.469297"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 200], ["created_at", "2021-10-27 13:30:05.470411"], ["updated_at", "2021-10-27 13:30:05.470411"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 200], ["created_at", "2021-10-27 13:30:05.471702"], ["updated_at", "2021-10-27 13:30:05.471702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 202], ["created_at", "2021-10-27 13:30:05.473062"], ["updated_at", "2021-10-27 13:30:05.473062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/shelters?utf8=%E2%9C%93&search=RGV&commit=Search” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"RGV", "commit"=>"Search"}
Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%RGV%')
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.485246"], ["updated_at", "2021-10-27 13:30:05.485246"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.486407"], ["updated_at", "2021-10-27 13:30:05.486407"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 203], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 203], ["created_at", "2021-10-27 13:30:05.487744"], ["updated_at", "2021-10-27 13:30:05.487744"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 203], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 203], ["created_at", "2021-10-27 13:30:05.489014"], ["updated_at", "2021-10-27 13:30:05.489014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 204], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 204], ["created_at", "2021-10-27 13:30:05.490250"], ["updated_at", "2021-10-27 13:30:05.490250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 203], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 203], ["created_at", "2021-10-27 13:30:05.491822"], ["updated_at", "2021-10-27 13:30:05.491822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/203/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"203"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 203], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 203], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.508662"], ["updated_at", "2021-10-27 13:30:05.508662"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.510082"], ["updated_at", "2021-10-27 13:30:05.510082"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 205], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 205], ["created_at", "2021-10-27 13:30:05.511752"], ["updated_at", "2021-10-27 13:30:05.511752"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 205], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 205], ["created_at", "2021-10-27 13:30:05.513404"], ["updated_at", "2021-10-27 13:30:05.513404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 206], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 206], ["created_at", "2021-10-27 13:30:05.514987"], ["updated_at", "2021-10-27 13:30:05.514987"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 205], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 205], ["created_at", "2021-10-27 13:30:05.516755"], ["updated_at", "2021-10-27 13:30:05.516755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/205/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"205"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 205], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 205], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/shelters/205/pets/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"205"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 205], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.527281"], ["updated_at", "2021-10-27 13:30:05.527281"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.528554"], ["updated_at", "2021-10-27 13:30:05.528554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 207], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 207], ["created_at", "2021-10-27 13:30:05.530149"], ["updated_at", "2021-10-27 13:30:05.530149"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 207], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 207], ["created_at", "2021-10-27 13:30:05.531790"], ["updated_at", "2021-10-27 13:30:05.531790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 208], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 208], ["created_at", "2021-10-27 13:30:05.533455"], ["updated_at", "2021-10-27 13:30:05.533455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 207], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 207], ["created_at", "2021-10-27 13:30:05.535085"], ["updated_at", "2021-10-27 13:30:05.535085"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/207/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"207"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 207], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 207], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/pets/360/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"360"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 360], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.544708"], ["updated_at", "2021-10-27 13:30:05.544708"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.545938"], ["updated_at", "2021-10-27 13:30:05.545938"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 209], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 209], ["created_at", "2021-10-27 13:30:05.547987"], ["updated_at", "2021-10-27 13:30:05.547987"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 209], ["LIMIT", 1]]
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 209], ["created_at", "2021-10-27 13:30:05.549313"], ["updated_at", "2021-10-27 13:30:05.549313"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 210], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 210], ["created_at", "2021-10-27 13:30:05.552333"], ["updated_at", "2021-10-27 13:30:05.552333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 209], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 209], ["created_at", "2021-10-27 13:30:05.553969"], ["updated_at", "2021-10-27 13:30:05.553969"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/209/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"209"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 209], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 209], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started DELETE “/pets/364” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"364"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 364], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.0ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 364]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 209], ["LIMIT", 1]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 210], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 209], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.1ms)

Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.569008"], ["updated_at", "2021-10-27 13:30:05.569008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.570276"], ["updated_at", "2021-10-27 13:30:05.570276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 211], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 211], ["created_at", "2021-10-27 13:30:05.571789"], ["updated_at", "2021-10-27 13:30:05.571789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 211], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 211], ["created_at", "2021-10-27 13:30:05.573600"], ["updated_at", "2021-10-27 13:30:05.573600"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 212], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 212], ["created_at", "2021-10-27 13:30:05.575172"], ["updated_at", "2021-10-27 13:30:05.575172"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 211], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 211], ["created_at", "2021-10-27 13:30:05.576954"], ["updated_at", "2021-10-27 13:30:05.576954"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/211/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"211"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 211], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 211], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.584952"], ["updated_at", "2021-10-27 13:30:05.584952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.585985"], ["updated_at", "2021-10-27 13:30:05.585985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 213], ["LIMIT", 1]]
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 213], ["created_at", "2021-10-27 13:30:05.587646"], ["updated_at", "2021-10-27 13:30:05.587646"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 213], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 213], ["created_at", "2021-10-27 13:30:05.589660"], ["updated_at", "2021-10-27 13:30:05.589660"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 214], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 214], ["created_at", "2021-10-27 13:30:05.591292"], ["updated_at", "2021-10-27 13:30:05.591292"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 213], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 213], ["created_at", "2021-10-27 13:30:05.592875"], ["updated_at", "2021-10-27 13:30:05.592875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/213/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"213"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 213], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 213], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.7ms) Started GET “/shelters/213/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"213"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 213], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')  [["shelter_id", 213], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.607424"], ["updated_at", "2021-10-27 13:30:05.607424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.608709"], ["updated_at", "2021-10-27 13:30:05.608709"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 215], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 215], ["created_at", "2021-10-27 13:30:05.610291"], ["updated_at", "2021-10-27 13:30:05.610291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 215], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 215], ["created_at", "2021-10-27 13:30:05.611910"], ["updated_at", "2021-10-27 13:30:05.611910"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 216], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 216], ["created_at", "2021-10-27 13:30:05.613625"], ["updated_at", "2021-10-27 13:30:05.613625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 215], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 215], ["created_at", "2021-10-27 13:30:05.615246"], ["updated_at", "2021-10-27 13:30:05.615246"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/215/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"215"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 215], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 215], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/shelters/215/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"sort"=>"alphabetical", "shelter_id"=>"215"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 215], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 215], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.628195"], ["updated_at", "2021-10-27 13:30:05.628195"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/217” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"217"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 217], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 217]]
Rendered shelters/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.635341"], ["updated_at", "2021-10-27 13:30:05.635341"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 218], ["created_at", "2021-10-27 13:30:05.636574"], ["updated_at", "2021-10-27 13:30:05.636574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/218” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"218"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 218], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.2ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 218]]
Rendered shelters/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 218]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.642694"], ["updated_at", "2021-10-27 13:30:05.642694"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/219” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"219"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 219], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 219]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms) Started DELETE “/shelters/219” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#destroy as HTML

Parameters: {"id"=>"219"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 219], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 219]]
Shelter Destroy (0.7ms)  DELETE FROM "shelters" WHERE "shelters"."id" = $1  [["id", 219]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.2ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.654232"], ["updated_at", "2021-10-27 13:30:05.654232"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/220” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"220"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 220], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 220]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms) Started GET “/shelters/220/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"220"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 220], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 220], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.662214"], ["updated_at", "2021-10-27 13:30:05.662214"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/221/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"221"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 221], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.667670"], ["updated_at", "2021-10-27 13:30:05.667670"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/222/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"222"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 222], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/shelters/222” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita Shelter", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"10", "commit"=>"Save ", "id"=>"222"}

Unpermitted parameters: :utf8, :_method, :commit

Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 222], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Update (0.4ms)  UPDATE "shelters" SET "name" = $1, "city" = $2, "rank" = $3, "updated_at" = $4 WHERE "shelters"."id" = $5  [["name", "Wichita Shelter"], ["city", "Wichita"], ["rank", 10], ["updated_at", "2021-10-27 13:30:05.677082"], ["id", 222]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.7ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.683323"], ["updated_at", "2021-10-27 13:30:05.683323"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/223/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"223"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 223], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/shelters/223” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"", "commit"=>"Save ", "id"=>"223"}

Unpermitted parameters: :utf8, :_method, :commit

Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 223], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/shelters/223/edit Completed 302 Found in 3ms (ActiveRecord: 0.4ms) Started GET “/shelters/223/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"223"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 223], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.9ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.711697"], ["updated_at", "2021-10-27 13:30:05.711697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/79/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"79"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.9ms)

Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.723334"], ["updated_at", "2021-10-27 13:30:05.723334"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/80/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"80"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/80/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"80"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.5ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Veterinarian Create (1.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 80], ["created_at", "2021-10-27 13:30:05.746983"], ["updated_at", "2021-10-27 13:30:05.746983"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/80/veterinarians Completed 302 Found in 18ms (ActiveRecord: 11.7ms) Started GET “/veterinary_offices/80/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"80"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 80], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.7ms)

Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.6ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.757824"], ["updated_at", "2021-10-27 13:30:05.757824"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/81/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"81"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started POST “/veterinary_offices/81/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"81"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/81/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/veterinary_offices/81/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"81"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.773972"], ["updated_at", "2021-10-27 13:30:05.773972"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 82], ["created_at", "2021-10-27 13:30:05.775742"], ["updated_at", "2021-10-27 13:30:05.775742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 82], ["created_at", "2021-10-27 13:30:05.777540"], ["updated_at", "2021-10-27 13:30:05.777540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.786064"], ["updated_at", "2021-10-27 13:30:05.786064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 83], ["created_at", "2021-10-27 13:30:05.787895"], ["updated_at", "2021-10-27 13:30:05.787895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 83], ["created_at", "2021-10-27 13:30:05.789798"], ["updated_at", "2021-10-27 13:30:05.789798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.795223"], ["updated_at", "2021-10-27 13:30:05.795223"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 84], ["created_at", "2021-10-27 13:30:05.796847"], ["updated_at", "2021-10-27 13:30:05.796847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 84], ["created_at", "2021-10-27 13:30:05.798546"], ["updated_at", "2021-10-27 13:30:05.798546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinarians/142/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"142"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 142], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.9ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.809002"], ["updated_at", "2021-10-27 13:30:05.809002"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 85], ["created_at", "2021-10-27 13:30:05.810730"], ["updated_at", "2021-10-27 13:30:05.810730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 85], ["created_at", "2021-10-27 13:30:05.812269"], ["updated_at", "2021-10-27 13:30:05.812269"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started DELETE “/veterinarians/144” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"144"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 144], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.4ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 144]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.824517"], ["updated_at", "2021-10-27 13:30:05.824517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 86], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 86], ["created_at", "2021-10-27 13:30:05.826014"], ["updated_at", "2021-10-27 13:30:05.826014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/146” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"146"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 146], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 86], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.833326"], ["updated_at", "2021-10-27 13:30:05.833326"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 87], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 87], ["created_at", "2021-10-27 13:30:05.834972"], ["updated_at", "2021-10-27 13:30:05.834972"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/147” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"147"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 87], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.5ms) Started DELETE “/veterinarians/147” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"147"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 147]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.7ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (0.3ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:30:05.845939"], ["updated_at", "2021-10-27 13:30:05.845939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 88], ["created_at", "2021-10-27 13:30:05.847430"], ["updated_at", "2021-10-27 13:30:05.847430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/148/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"148"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 148], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:30:05.853333"], ["updated_at", "2021-10-27 13:30:05.853333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 89], ["created_at", "2021-10-27 13:30:05.854933"], ["updated_at", "2021-10-27 13:30:05.854933"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/149/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"149"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/149” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"149"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
Veterinarian Update (0.5ms)  UPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5  [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-27 13:30:05.864464"], ["id", 149]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/149 Completed 302 Found in 3ms (ActiveRecord: 1.0ms) Started GET “/veterinarians/149” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"149"}
Veterinarian Load (0.1ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:30:05.870543"], ["updated_at", "2021-10-27 13:30:05.870543"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 90], ["created_at", "2021-10-27 13:30:05.872525"], ["updated_at", "2021-10-27 13:30:05.872525"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/150/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"150"}
Veterinarian Load (0.1ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 150], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/veterinarians/150” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"150"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 150], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/150/edit Completed 302 Found in 5ms (ActiveRecord: 0.6ms) Started GET “/veterinarians/150/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"150"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 150], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-27 13:30:05.901722"], ["updated_at", "2021-10-27 13:30:05.901722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.7ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.5ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:30:05.918387"], ["updated_at", "2021-10-27 13:30:05.918387"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:30:05.919655"], ["updated_at", "2021-10-27 13:30:05.919655"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:05.920783"], ["updated_at", "2021-10-27 13:30:05.920783"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 92], ["created_at", "2021-10-27 13:30:05.922447"], ["updated_at", "2021-10-27 13:30:05.922447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 92], ["created_at", "2021-10-27 13:30:05.923551"], ["updated_at", "2021-10-27 13:30:05.923551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 94], ["created_at", "2021-10-27 13:30:05.924545"], ["updated_at", "2021-10-27 13:30:05.924545"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:30:05.931145"], ["updated_at", "2021-10-27 13:30:05.931145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:30:05.932219"], ["updated_at", "2021-10-27 13:30:05.932219"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:05.934037"], ["updated_at", "2021-10-27 13:30:05.934037"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 95], ["created_at", "2021-10-27 13:30:05.935428"], ["updated_at", "2021-10-27 13:30:05.935428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 95], ["created_at", "2021-10-27 13:30:05.936989"], ["updated_at", "2021-10-27 13:30:05.936989"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 97], ["created_at", "2021-10-27 13:30:05.938431"], ["updated_at", "2021-10-27 13:30:05.938431"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:30:05.945892"], ["updated_at", "2021-10-27 13:30:05.945892"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:30:05.947306"], ["updated_at", "2021-10-27 13:30:05.947306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:05.948382"], ["updated_at", "2021-10-27 13:30:05.948382"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 98], ["created_at", "2021-10-27 13:30:05.949903"], ["updated_at", "2021-10-27 13:30:05.949903"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 98], ["created_at", "2021-10-27 13:30:05.951113"], ["updated_at", "2021-10-27 13:30:05.951113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 100], ["created_at", "2021-10-27 13:30:05.952398"], ["updated_at", "2021-10-27 13:30:05.952398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (1.0ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 1.0ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#index as HTML

Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (1.8ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
Rendered veterinary_offices/index.html.erb within layouts/application (2.4ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.8ms)

 (1.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (15.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:30:05.970965"], ["updated_at", "2021-10-27 13:30:05.970965"]]
 (3.8ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (64.8ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:30:05.991449"], ["updated_at", "2021-10-27 13:30:05.991449"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (1.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:06.058221"], ["updated_at", "2021-10-27 13:30:06.058221"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 101], ["created_at", "2021-10-27 13:30:06.061315"], ["updated_at", "2021-10-27 13:30:06.061315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 101], ["created_at", "2021-10-27 13:30:06.063062"], ["updated_at", "2021-10-27 13:30:06.063062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 103], ["created_at", "2021-10-27 13:30:06.064779"], ["updated_at", "2021-10-27 13:30:06.064779"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/101/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"101"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:30:06.083042"], ["updated_at", "2021-10-27 13:30:06.083042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:30:06.084477"], ["updated_at", "2021-10-27 13:30:06.084477"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:06.085711"], ["updated_at", "2021-10-27 13:30:06.085711"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 104], ["created_at", "2021-10-27 13:30:06.087289"], ["updated_at", "2021-10-27 13:30:06.087289"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 104], ["created_at", "2021-10-27 13:30:06.088999"], ["updated_at", "2021-10-27 13:30:06.088999"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 106], ["created_at", "2021-10-27 13:30:06.090620"], ["updated_at", "2021-10-27 13:30:06.090620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started DELETE “/veterinary_offices/104” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"104"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 104], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 104]]
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 163]]
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 164]]
VeterinaryOffice Destroy (0.5ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 104]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:06.110089"], ["updated_at", "2021-10-27 13:30:06.110089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/107” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"107"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 107]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:06.117775"], ["updated_at", "2021-10-27 13:30:06.117775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/108” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"108"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 108], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 108]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)

 (0.2ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 108]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 13:30:06.125147"], ["updated_at", "2021-10-27 13:30:06.125147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/109” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"109"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 109]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.5ms) Started DELETE “/veterinary_offices/109” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"109"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 109]]
VeterinaryOffice Destroy (0.7ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 109]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 1.4ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 13:30:06.139411"], ["updated_at", "2021-10-27 13:30:06.139411"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/110” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"110"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 110]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/110/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"110"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 110], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:30:06.149118"], ["updated_at", "2021-10-27 13:30:06.149118"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/111/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"111"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:30:06.158024"], ["updated_at", "2021-10-27 13:30:06.158024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/112/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"112"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/112” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"112"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Update (0.5ms)  UPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4  [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-27 13:30:06.167924"], ["id", 112]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:30:06.174853"], ["updated_at", "2021-10-27 13:30:06.174853"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/113/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"113"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/113” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"113"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/113/edit Completed 302 Found in 2ms (ActiveRecord: 0.4ms) Started GET “/veterinary_offices/113/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"113"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.189609"], ["updated_at", "2021-10-27 13:30:06.189609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.190576"], ["updated_at", "2021-10-27 13:30:06.190576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 13:30:06.191956"], ["updated_at", "2021-10-27 13:30:06.191956"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 13:30:06.193558"], ["updated_at", "2021-10-27 13:30:06.193558"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 13:30:06.195097"], ["updated_at", "2021-10-27 13:30:06.195097"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 115], ["created_at", "2021-10-27 13:30:06.196696"], ["updated_at", "2021-10-27 13:30:06.196696"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 115], ["created_at", "2021-10-27 13:30:06.198189"], ["updated_at", "2021-10-27 13:30:06.198189"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/114/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"114"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 114], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.206554"], ["updated_at", "2021-10-27 13:30:06.206554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.207779"], ["updated_at", "2021-10-27 13:30:06.207779"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 13:30:06.209460"], ["updated_at", "2021-10-27 13:30:06.209460"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 13:30:06.211115"], ["updated_at", "2021-10-27 13:30:06.211115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 13:30:06.212651"], ["updated_at", "2021-10-27 13:30:06.212651"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 117], ["created_at", "2021-10-27 13:30:06.214422"], ["updated_at", "2021-10-27 13:30:06.214422"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 117], ["created_at", "2021-10-27 13:30:06.216126"], ["updated_at", "2021-10-27 13:30:06.216126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/116/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"116"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 116], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started GET “/veterinarians/172/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"172"}
Veterinarian Load (0.1ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 172], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.226067"], ["updated_at", "2021-10-27 13:30:06.226067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.227146"], ["updated_at", "2021-10-27 13:30:06.227146"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 13:30:06.228747"], ["updated_at", "2021-10-27 13:30:06.228747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 13:30:06.230501"], ["updated_at", "2021-10-27 13:30:06.230501"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 13:30:06.232074"], ["updated_at", "2021-10-27 13:30:06.232074"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 119], ["created_at", "2021-10-27 13:30:06.233661"], ["updated_at", "2021-10-27 13:30:06.233661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 119], ["created_at", "2021-10-27 13:30:06.235195"], ["updated_at", "2021-10-27 13:30:06.235195"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/118/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"118"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 118], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started DELETE “/veterinarians/177” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"177"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 177], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.4ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 177]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.248349"], ["updated_at", "2021-10-27 13:30:06.248349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.249565"], ["updated_at", "2021-10-27 13:30:06.249565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 13:30:06.251032"], ["updated_at", "2021-10-27 13:30:06.251032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 13:30:06.252615"], ["updated_at", "2021-10-27 13:30:06.252615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 13:30:06.254229"], ["updated_at", "2021-10-27 13:30:06.254229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 121], ["created_at", "2021-10-27 13:30:06.255732"], ["updated_at", "2021-10-27 13:30:06.255732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 121], ["created_at", "2021-10-27 13:30:06.257218"], ["updated_at", "2021-10-27 13:30:06.257218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/120/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"120"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 120], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/veterinary_offices/120/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"120"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.268006"], ["updated_at", "2021-10-27 13:30:06.268006"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.269031"], ["updated_at", "2021-10-27 13:30:06.269031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 13:30:06.270293"], ["updated_at", "2021-10-27 13:30:06.270293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 13:30:06.271874"], ["updated_at", "2021-10-27 13:30:06.271874"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 13:30:06.273378"], ["updated_at", "2021-10-27 13:30:06.273378"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 123], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 123], ["created_at", "2021-10-27 13:30:06.274873"], ["updated_at", "2021-10-27 13:30:06.274873"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 123], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 123], ["created_at", "2021-10-27 13:30:06.276361"], ["updated_at", "2021-10-27 13:30:06.276361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/122/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"122"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 122], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.283361"], ["updated_at", "2021-10-27 13:30:06.283361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.284333"], ["updated_at", "2021-10-27 13:30:06.284333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 13:30:06.285577"], ["updated_at", "2021-10-27 13:30:06.285577"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 13:30:06.286871"], ["updated_at", "2021-10-27 13:30:06.286871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 13:30:06.288348"], ["updated_at", "2021-10-27 13:30:06.288348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 125], ["created_at", "2021-10-27 13:30:06.289823"], ["updated_at", "2021-10-27 13:30:06.289823"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 125], ["created_at", "2021-10-27 13:30:06.291373"], ["updated_at", "2021-10-27 13:30:06.291373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/124/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"124"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 124], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices/124/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"124"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')  [["veterinary_office_id", 124], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.305977"], ["updated_at", "2021-10-27 13:30:06.305977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.307350"], ["updated_at", "2021-10-27 13:30:06.307350"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 126], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 13:30:06.308889"], ["updated_at", "2021-10-27 13:30:06.308889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 126], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 13:30:06.310658"], ["updated_at", "2021-10-27 13:30:06.310658"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 126], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 13:30:06.312178"], ["updated_at", "2021-10-27 13:30:06.312178"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 127], ["created_at", "2021-10-27 13:30:06.313929"], ["updated_at", "2021-10-27 13:30:06.313929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 127], ["created_at", "2021-10-27 13:30:06.315182"], ["updated_at", "2021-10-27 13:30:06.315182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/127/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"127"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 127], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms) Started GET “/veterinary_offices/127/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"127"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 127], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:06.334087"], ["updated_at", "2021-10-27 13:30:06.334087"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 224], ["created_at", "2021-10-27 13:30:06.335706"], ["updated_at", "2021-10-27 13:30:06.335706"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 224], ["created_at", "2021-10-27 13:30:06.337089"], ["updated_at", "2021-10-27 13:30:06.337089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 224], ["created_at", "2021-10-27 13:30:06.338470"], ["updated_at", "2021-10-27 13:30:06.338470"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:06.339640"], ["updated_at", "2021-10-27 13:30:06.339640"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 381], ["application_id", 73], ["created_at", "2021-10-27 13:30:06.341336"], ["updated_at", "2021-10-27 13:30:06.341336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 382], ["application_id", 73], ["created_at", "2021-10-27 13:30:06.343059"], ["updated_at", "2021-10-27 13:30:06.343059"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 73)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 73)
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:06.348894"], ["updated_at", "2021-10-27 13:30:06.348894"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 225], ["created_at", "2021-10-27 13:30:06.350248"], ["updated_at", "2021-10-27 13:30:06.350248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 225], ["created_at", "2021-10-27 13:30:06.351636"], ["updated_at", "2021-10-27 13:30:06.351636"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 225], ["created_at", "2021-10-27 13:30:06.352974"], ["updated_at", "2021-10-27 13:30:06.352974"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:06.354191"], ["updated_at", "2021-10-27 13:30:06.354191"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 384], ["application_id", 74], ["created_at", "2021-10-27 13:30:06.355936"], ["updated_at", "2021-10-27 13:30:06.355936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 385], ["application_id", 74], ["created_at", "2021-10-27 13:30:06.357412"], ["updated_at", "2021-10-27 13:30:06.357412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:06.359817"], ["updated_at", "2021-10-27 13:30:06.359817"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 226], ["created_at", "2021-10-27 13:30:06.361562"], ["updated_at", "2021-10-27 13:30:06.361562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 226], ["created_at", "2021-10-27 13:30:06.362863"], ["updated_at", "2021-10-27 13:30:06.362863"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 226], ["created_at", "2021-10-27 13:30:06.363989"], ["updated_at", "2021-10-27 13:30:06.363989"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:06.364907"], ["updated_at", "2021-10-27 13:30:06.364907"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 387], ["application_id", 75], ["created_at", "2021-10-27 13:30:06.366484"], ["updated_at", "2021-10-27 13:30:06.366484"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 388], ["application_id", 75], ["created_at", "2021-10-27 13:30:06.367954"], ["updated_at", "2021-10-27 13:30:06.367954"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.370673"], ["updated_at", "2021-10-27 13:30:06.370673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 227], ["created_at", "2021-10-27 13:30:06.372095"], ["updated_at", "2021-10-27 13:30:06.372095"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 227], ["created_at", "2021-10-27 13:30:06.373507"], ["updated_at", "2021-10-27 13:30:06.373507"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 227], ["created_at", "2021-10-27 13:30:06.374870"], ["updated_at", "2021-10-27 13:30:06.374870"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.378809"], ["updated_at", "2021-10-27 13:30:06.378809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 228], ["created_at", "2021-10-27 13:30:06.380147"], ["updated_at", "2021-10-27 13:30:06.380147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 228], ["created_at", "2021-10-27 13:30:06.381309"], ["updated_at", "2021-10-27 13:30:06.381309"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 228], ["created_at", "2021-10-27 13:30:06.382692"], ["updated_at", "2021-10-27 13:30:06.382692"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.384632"], ["updated_at", "2021-10-27 13:30:06.384632"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 229], ["created_at", "2021-10-27 13:30:06.385998"], ["updated_at", "2021-10-27 13:30:06.385998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 229], ["created_at", "2021-10-27 13:30:06.387499"], ["updated_at", "2021-10-27 13:30:06.387499"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 229], ["created_at", "2021-10-27 13:30:06.389025"], ["updated_at", "2021-10-27 13:30:06.389025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.391515"], ["updated_at", "2021-10-27 13:30:06.391515"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 230], ["created_at", "2021-10-27 13:30:06.392938"], ["updated_at", "2021-10-27 13:30:06.392938"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 230], ["created_at", "2021-10-27 13:30:06.394182"], ["updated_at", "2021-10-27 13:30:06.394182"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 230], ["created_at", "2021-10-27 13:30:06.395288"], ["updated_at", "2021-10-27 13:30:06.395288"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.401074"], ["updated_at", "2021-10-27 13:30:06.401074"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 231], ["created_at", "2021-10-27 13:30:06.402741"], ["updated_at", "2021-10-27 13:30:06.402741"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 231], ["created_at", "2021-10-27 13:30:06.404292"], ["updated_at", "2021-10-27 13:30:06.404292"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 231], ["created_at", "2021-10-27 13:30:06.405679"], ["updated_at", "2021-10-27 13:30:06.405679"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.410691"], ["updated_at", "2021-10-27 13:30:06.410691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 232], ["created_at", "2021-10-27 13:30:06.412011"], ["updated_at", "2021-10-27 13:30:06.412011"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 232], ["created_at", "2021-10-27 13:30:06.413399"], ["updated_at", "2021-10-27 13:30:06.413399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 232], ["created_at", "2021-10-27 13:30:06.414669"], ["updated_at", "2021-10-27 13:30:06.414669"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.417594"], ["updated_at", "2021-10-27 13:30:06.417594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 233], ["created_at", "2021-10-27 13:30:06.418824"], ["updated_at", "2021-10-27 13:30:06.418824"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 233], ["created_at", "2021-10-27 13:30:06.420277"], ["updated_at", "2021-10-27 13:30:06.420277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 233], ["created_at", "2021-10-27 13:30:06.421661"], ["updated_at", "2021-10-27 13:30:06.421661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.424341"], ["updated_at", "2021-10-27 13:30:06.424341"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 234], ["created_at", "2021-10-27 13:30:06.425640"], ["updated_at", "2021-10-27 13:30:06.425640"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 234], ["created_at", "2021-10-27 13:30:06.426869"], ["updated_at", "2021-10-27 13:30:06.426869"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 234], ["created_at", "2021-10-27 13:30:06.428066"], ["updated_at", "2021-10-27 13:30:06.428066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.430501"], ["updated_at", "2021-10-27 13:30:06.430501"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 235], ["created_at", "2021-10-27 13:30:06.431741"], ["updated_at", "2021-10-27 13:30:06.431741"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 235], ["created_at", "2021-10-27 13:30:06.433002"], ["updated_at", "2021-10-27 13:30:06.433002"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 235], ["created_at", "2021-10-27 13:30:06.434342"], ["updated_at", "2021-10-27 13:30:06.434342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.436310"], ["updated_at", "2021-10-27 13:30:06.436310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.437550"], ["updated_at", "2021-10-27 13:30:06.437550"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.438459"], ["updated_at", "2021-10-27 13:30:06.438459"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 236], ["created_at", "2021-10-27 13:30:06.439566"], ["updated_at", "2021-10-27 13:30:06.439566"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 236], ["created_at", "2021-10-27 13:30:06.440775"], ["updated_at", "2021-10-27 13:30:06.440775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 238], ["created_at", "2021-10-27 13:30:06.442292"], ["updated_at", "2021-10-27 13:30:06.442292"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 236], ["created_at", "2021-10-27 13:30:06.443801"], ["updated_at", "2021-10-27 13:30:06.443801"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.446048"], ["updated_at", "2021-10-27 13:30:06.446048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.447223"], ["updated_at", "2021-10-27 13:30:06.447223"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.448338"], ["updated_at", "2021-10-27 13:30:06.448338"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 239], ["created_at", "2021-10-27 13:30:06.449717"], ["updated_at", "2021-10-27 13:30:06.449717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 239], ["created_at", "2021-10-27 13:30:06.451139"], ["updated_at", "2021-10-27 13:30:06.451139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 241], ["created_at", "2021-10-27 13:30:06.452602"], ["updated_at", "2021-10-27 13:30:06.452602"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 239], ["created_at", "2021-10-27 13:30:06.454077"], ["updated_at", "2021-10-27 13:30:06.454077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.459919"], ["updated_at", "2021-10-27 13:30:06.459919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.461068"], ["updated_at", "2021-10-27 13:30:06.461068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.462150"], ["updated_at", "2021-10-27 13:30:06.462150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 242], ["created_at", "2021-10-27 13:30:06.463539"], ["updated_at", "2021-10-27 13:30:06.463539"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 242], ["created_at", "2021-10-27 13:30:06.465038"], ["updated_at", "2021-10-27 13:30:06.465038"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 244], ["created_at", "2021-10-27 13:30:06.466576"], ["updated_at", "2021-10-27 13:30:06.466576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 242], ["created_at", "2021-10-27 13:30:06.467982"], ["updated_at", "2021-10-27 13:30:06.467982"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.474187"], ["updated_at", "2021-10-27 13:30:06.474187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.475203"], ["updated_at", "2021-10-27 13:30:06.475203"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.476049"], ["updated_at", "2021-10-27 13:30:06.476049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 245], ["created_at", "2021-10-27 13:30:06.477446"], ["updated_at", "2021-10-27 13:30:06.477446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 245], ["created_at", "2021-10-27 13:30:06.478856"], ["updated_at", "2021-10-27 13:30:06.478856"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 247], ["created_at", "2021-10-27 13:30:06.480248"], ["updated_at", "2021-10-27 13:30:06.480248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 245], ["created_at", "2021-10-27 13:30:06.481574"], ["updated_at", "2021-10-27 13:30:06.481574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.486047"], ["updated_at", "2021-10-27 13:30:06.486047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.487277"], ["updated_at", "2021-10-27 13:30:06.487277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.488398"], ["updated_at", "2021-10-27 13:30:06.488398"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 248], ["created_at", "2021-10-27 13:30:06.490238"], ["updated_at", "2021-10-27 13:30:06.490238"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 248], ["created_at", "2021-10-27 13:30:06.491391"], ["updated_at", "2021-10-27 13:30:06.491391"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 250], ["created_at", "2021-10-27 13:30:06.492592"], ["updated_at", "2021-10-27 13:30:06.492592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 248], ["created_at", "2021-10-27 13:30:06.494047"], ["updated_at", "2021-10-27 13:30:06.494047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.497406"], ["updated_at", "2021-10-27 13:30:06.497406"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.498571"], ["updated_at", "2021-10-27 13:30:06.498571"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.499654"], ["updated_at", "2021-10-27 13:30:06.499654"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 251], ["created_at", "2021-10-27 13:30:06.500976"], ["updated_at", "2021-10-27 13:30:06.500976"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 251], ["created_at", "2021-10-27 13:30:06.502335"], ["updated_at", "2021-10-27 13:30:06.502335"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 253], ["created_at", "2021-10-27 13:30:06.503742"], ["updated_at", "2021-10-27 13:30:06.503742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 251], ["created_at", "2021-10-27 13:30:06.505086"], ["updated_at", "2021-10-27 13:30:06.505086"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.508161"], ["updated_at", "2021-10-27 13:30:06.508161"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.509147"], ["updated_at", "2021-10-27 13:30:06.509147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.510007"], ["updated_at", "2021-10-27 13:30:06.510007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 254], ["created_at", "2021-10-27 13:30:06.511129"], ["updated_at", "2021-10-27 13:30:06.511129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 254], ["created_at", "2021-10-27 13:30:06.512306"], ["updated_at", "2021-10-27 13:30:06.512306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 256], ["created_at", "2021-10-27 13:30:06.513742"], ["updated_at", "2021-10-27 13:30:06.513742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 254], ["created_at", "2021-10-27 13:30:06.515081"], ["updated_at", "2021-10-27 13:30:06.515081"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.517757"], ["updated_at", "2021-10-27 13:30:06.517757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.518886"], ["updated_at", "2021-10-27 13:30:06.518886"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.520169"], ["updated_at", "2021-10-27 13:30:06.520169"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 257], ["created_at", "2021-10-27 13:30:06.521553"], ["updated_at", "2021-10-27 13:30:06.521553"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 257], ["created_at", "2021-10-27 13:30:06.523199"], ["updated_at", "2021-10-27 13:30:06.523199"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 259], ["created_at", "2021-10-27 13:30:06.524400"], ["updated_at", "2021-10-27 13:30:06.524400"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 257], ["created_at", "2021-10-27 13:30:06.525478"], ["updated_at", "2021-10-27 13:30:06.525478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.7ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.528278"], ["updated_at", "2021-10-27 13:30:06.528278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.529407"], ["updated_at", "2021-10-27 13:30:06.529407"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.530480"], ["updated_at", "2021-10-27 13:30:06.530480"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 260], ["created_at", "2021-10-27 13:30:06.531775"], ["updated_at", "2021-10-27 13:30:06.531775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 260], ["created_at", "2021-10-27 13:30:06.533116"], ["updated_at", "2021-10-27 13:30:06.533116"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 262], ["created_at", "2021-10-27 13:30:06.534501"], ["updated_at", "2021-10-27 13:30:06.534501"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 260], ["created_at", "2021-10-27 13:30:06.535985"], ["updated_at", "2021-10-27 13:30:06.535985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 260], ["adoptable", true]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.538679"], ["updated_at", "2021-10-27 13:30:06.538679"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.539595"], ["updated_at", "2021-10-27 13:30:06.539595"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.540468"], ["updated_at", "2021-10-27 13:30:06.540468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 263], ["created_at", "2021-10-27 13:30:06.541592"], ["updated_at", "2021-10-27 13:30:06.541592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 263], ["created_at", "2021-10-27 13:30:06.542757"], ["updated_at", "2021-10-27 13:30:06.542757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 265], ["created_at", "2021-10-27 13:30:06.543971"], ["updated_at", "2021-10-27 13:30:06.543971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 263], ["created_at", "2021-10-27 13:30:06.545298"], ["updated_at", "2021-10-27 13:30:06.545298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 263], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.548184"], ["updated_at", "2021-10-27 13:30:06.548184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.549615"], ["updated_at", "2021-10-27 13:30:06.549615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.550719"], ["updated_at", "2021-10-27 13:30:06.550719"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 266], ["created_at", "2021-10-27 13:30:06.552055"], ["updated_at", "2021-10-27 13:30:06.552055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 266], ["created_at", "2021-10-27 13:30:06.553453"], ["updated_at", "2021-10-27 13:30:06.553453"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 268], ["created_at", "2021-10-27 13:30:06.554913"], ["updated_at", "2021-10-27 13:30:06.554913"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 266], ["created_at", "2021-10-27 13:30:06.556303"], ["updated_at", "2021-10-27 13:30:06.556303"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 266], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.559322"], ["updated_at", "2021-10-27 13:30:06.559322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.560578"], ["updated_at", "2021-10-27 13:30:06.560578"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.561719"], ["updated_at", "2021-10-27 13:30:06.561719"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 269], ["created_at", "2021-10-27 13:30:06.563104"], ["updated_at", "2021-10-27 13:30:06.563104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 269], ["created_at", "2021-10-27 13:30:06.564940"], ["updated_at", "2021-10-27 13:30:06.564940"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 271], ["created_at", "2021-10-27 13:30:06.566441"], ["updated_at", "2021-10-27 13:30:06.566441"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 269], ["created_at", "2021-10-27 13:30:06.567845"], ["updated_at", "2021-10-27 13:30:06.567845"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 269]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.570728"], ["updated_at", "2021-10-27 13:30:06.570728"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 13:30:06.572242"], ["updated_at", "2021-10-27 13:30:06.572242"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 13:30:06.573946"], ["updated_at", "2021-10-27 13:30:06.573946"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 13:30:06.575046"], ["updated_at", "2021-10-27 13:30:06.575046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 13:30:06.576095"], ["updated_at", "2021-10-27 13:30:06.576095"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.579565"], ["updated_at", "2021-10-27 13:30:06.579565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 13:30:06.580966"], ["updated_at", "2021-10-27 13:30:06.580966"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 13:30:06.582307"], ["updated_at", "2021-10-27 13:30:06.582307"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 13:30:06.583624"], ["updated_at", "2021-10-27 13:30:06.583624"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 13:30:06.584943"], ["updated_at", "2021-10-27 13:30:06.584943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.590833"], ["updated_at", "2021-10-27 13:30:06.590833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 13:30:06.592116"], ["updated_at", "2021-10-27 13:30:06.592116"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 13:30:06.593172"], ["updated_at", "2021-10-27 13:30:06.593172"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 13:30:06.594214"], ["updated_at", "2021-10-27 13:30:06.594214"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 13:30:06.595295"], ["updated_at", "2021-10-27 13:30:06.595295"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.599614"], ["updated_at", "2021-10-27 13:30:06.599614"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 13:30:06.601325"], ["updated_at", "2021-10-27 13:30:06.601325"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 13:30:06.605478"], ["updated_at", "2021-10-27 13:30:06.605478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 13:30:06.606812"], ["updated_at", "2021-10-27 13:30:06.606812"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 13:30:06.608189"], ["updated_at", "2021-10-27 13:30:06.608189"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.611667"], ["updated_at", "2021-10-27 13:30:06.611667"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 13:30:06.613113"], ["updated_at", "2021-10-27 13:30:06.613113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 13:30:06.614617"], ["updated_at", "2021-10-27 13:30:06.614617"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 13:30:06.615995"], ["updated_at", "2021-10-27 13:30:06.615995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 13:30:06.617311"], ["updated_at", "2021-10-27 13:30:06.617311"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.620111"], ["updated_at", "2021-10-27 13:30:06.620111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 13:30:06.621296"], ["updated_at", "2021-10-27 13:30:06.621296"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 13:30:06.622340"], ["updated_at", "2021-10-27 13:30:06.622340"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 13:30:06.623756"], ["updated_at", "2021-10-27 13:30:06.623756"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 13:30:06.625166"], ["updated_at", "2021-10-27 13:30:06.625166"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.627551"], ["updated_at", "2021-10-27 13:30:06.627551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 13:30:06.628915"], ["updated_at", "2021-10-27 13:30:06.628915"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 13:30:06.630608"], ["updated_at", "2021-10-27 13:30:06.630608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 13:30:06.631918"], ["updated_at", "2021-10-27 13:30:06.631918"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 13:30:06.633412"], ["updated_at", "2021-10-27 13:30:06.633412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.635202"], ["updated_at", "2021-10-27 13:30:06.635202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.636081"], ["updated_at", "2021-10-27 13:30:06.636081"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 135], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 13:30:06.637418"], ["updated_at", "2021-10-27 13:30:06.637418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 135], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 13:30:06.638783"], ["updated_at", "2021-10-27 13:30:06.638783"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 135], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 13:30:06.640546"], ["updated_at", "2021-10-27 13:30:06.640546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 136], ["LIMIT", 1]]
Veterinarian Create (0.9ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 136], ["created_at", "2021-10-27 13:30:06.642404"], ["updated_at", "2021-10-27 13:30:06.642404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.644926"], ["updated_at", "2021-10-27 13:30:06.644926"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.646057"], ["updated_at", "2021-10-27 13:30:06.646057"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 137], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 13:30:06.647655"], ["updated_at", "2021-10-27 13:30:06.647655"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 137], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 13:30:06.649361"], ["updated_at", "2021-10-27 13:30:06.649361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 137], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 13:30:06.651060"], ["updated_at", "2021-10-27 13:30:06.651060"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 138], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 138], ["created_at", "2021-10-27 13:30:06.652686"], ["updated_at", "2021-10-27 13:30:06.652686"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.658184"], ["updated_at", "2021-10-27 13:30:06.658184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.659292"], ["updated_at", "2021-10-27 13:30:06.659292"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 139], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 13:30:06.660904"], ["updated_at", "2021-10-27 13:30:06.660904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 139], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 13:30:06.662657"], ["updated_at", "2021-10-27 13:30:06.662657"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 139], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 13:30:06.664333"], ["updated_at", "2021-10-27 13:30:06.664333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 140], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 140], ["created_at", "2021-10-27 13:30:06.665997"], ["updated_at", "2021-10-27 13:30:06.665997"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.670101"], ["updated_at", "2021-10-27 13:30:06.670101"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.671306"], ["updated_at", "2021-10-27 13:30:06.671306"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 141], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 13:30:06.673562"], ["updated_at", "2021-10-27 13:30:06.673562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 141], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 13:30:06.674994"], ["updated_at", "2021-10-27 13:30:06.674994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 141], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 13:30:06.676252"], ["updated_at", "2021-10-27 13:30:06.676252"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 142], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 142], ["created_at", "2021-10-27 13:30:06.677617"], ["updated_at", "2021-10-27 13:30:06.677617"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.680734"], ["updated_at", "2021-10-27 13:30:06.680734"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.681966"], ["updated_at", "2021-10-27 13:30:06.681966"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 143], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 13:30:06.683691"], ["updated_at", "2021-10-27 13:30:06.683691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 143], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 13:30:06.685488"], ["updated_at", "2021-10-27 13:30:06.685488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 143], ["LIMIT", 1]]
Veterinarian Create (1.0ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 13:30:06.687126"], ["updated_at", "2021-10-27 13:30:06.687126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 144], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 144], ["created_at", "2021-10-27 13:30:06.689280"], ["updated_at", "2021-10-27 13:30:06.689280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.691565"], ["updated_at", "2021-10-27 13:30:06.691565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.692518"], ["updated_at", "2021-10-27 13:30:06.692518"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 145], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 13:30:06.693859"], ["updated_at", "2021-10-27 13:30:06.693859"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 145], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 13:30:06.695888"], ["updated_at", "2021-10-27 13:30:06.695888"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 145], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 13:30:06.697673"], ["updated_at", "2021-10-27 13:30:06.697673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 146], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 146], ["created_at", "2021-10-27 13:30:06.699355"], ["updated_at", "2021-10-27 13:30:06.699355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.702185"], ["updated_at", "2021-10-27 13:30:06.702185"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.703326"], ["updated_at", "2021-10-27 13:30:06.703326"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 13:30:06.704940"], ["updated_at", "2021-10-27 13:30:06.704940"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 13:30:06.706631"], ["updated_at", "2021-10-27 13:30:06.706631"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 13:30:06.708373"], ["updated_at", "2021-10-27 13:30:06.708373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 148], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 148], ["created_at", "2021-10-27 13:30:06.710004"], ["updated_at", "2021-10-27 13:30:06.710004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (1.2ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.713614"], ["updated_at", "2021-10-27 13:30:06.713614"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.714866"], ["updated_at", "2021-10-27 13:30:06.714866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 13:30:06.716451"], ["updated_at", "2021-10-27 13:30:06.716451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 13:30:06.718122"], ["updated_at", "2021-10-27 13:30:06.718122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 13:30:06.719735"], ["updated_at", "2021-10-27 13:30:06.719735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 150], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 150], ["created_at", "2021-10-27 13:30:06.721362"], ["updated_at", "2021-10-27 13:30:06.721362"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 149]]
 (0.2ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 150]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.725004"], ["updated_at", "2021-10-27 13:30:06.725004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.726031"], ["updated_at", "2021-10-27 13:30:06.726031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 151], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 13:30:06.727659"], ["updated_at", "2021-10-27 13:30:06.727659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 151], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 13:30:06.729323"], ["updated_at", "2021-10-27 13:30:06.729323"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 151], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 13:30:06.731046"], ["updated_at", "2021-10-27 13:30:06.731046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 152], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 152], ["created_at", "2021-10-27 13:30:06.732763"], ["updated_at", "2021-10-27 13:30:06.732763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 151], ["on_call", true]]
 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.736060"], ["updated_at", "2021-10-27 13:30:06.736060"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.737266"], ["updated_at", "2021-10-27 13:30:06.737266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 153], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 13:30:06.738992"], ["updated_at", "2021-10-27 13:30:06.738992"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 153], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 13:30:06.740744"], ["updated_at", "2021-10-27 13:30:06.740744"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 153], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 13:30:06.742120"], ["updated_at", "2021-10-27 13:30:06.742120"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 154], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 154], ["created_at", "2021-10-27 13:30:06.743951"], ["updated_at", "2021-10-27 13:30:06.743951"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 153], ["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.746908"], ["updated_at", "2021-10-27 13:30:06.746908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.748064"], ["updated_at", "2021-10-27 13:30:06.748064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 155], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 13:30:06.749936"], ["updated_at", "2021-10-27 13:30:06.749936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 155], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 13:30:06.751669"], ["updated_at", "2021-10-27 13:30:06.751669"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 155], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 13:30:06.753343"], ["updated_at", "2021-10-27 13:30:06.753343"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 156], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 156], ["created_at", "2021-10-27 13:30:06.754984"], ["updated_at", "2021-10-27 13:30:06.754984"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)  [["veterinary_office_id", 155], ["on_call", true]]
 (0.1ms)  ROLLBACK
 (2.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:24:13 -0600

 (0.1ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:29:00 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Rendered admin/shelters/index.html.erb within layouts/application (4.2ms)

Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)

 (0.2ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:29:29 -0600 Processing by Admin::SheltersController#index as HTML

Shelter Load (0.8ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Rendering admin/shelters/index.html.erb within layouts/application
Rendered admin/shelters/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 112ms (Views: 98.4ms | ActiveRecord: 3.8ms)

 (0.3ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:29:44 -0600 Processing by Admin::SheltersController#index as HTML

Shelter Load (1.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Rendering admin/shelters/index.html.erb within layouts/application
Rendered admin/shelters/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 107ms (Views: 93.5ms | ActiveRecord: 3.3ms)

 (0.3ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:34:43.376062"], ["updated_at", "2021-10-27 14:34:43.376062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:34:43.378788"], ["updated_at", "2021-10-27 14:34:43.378788"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:34:43.379733"], ["updated_at", "2021-10-27 14:34:43.379733"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:34:43 -0600 Processing by Admin::SheltersController#index as HTML

Shelter Load (0.8ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Rendering admin/shelters/index.html.erb within layouts/application
Rendered admin/shelters/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 90ms (Views: 84.7ms | ActiveRecord: 0.8ms)

 (0.3ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:34:56.628104"], ["updated_at", "2021-10-27 14:34:56.628104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:34:56.631317"], ["updated_at", "2021-10-27 14:34:56.631317"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:34:56.632972"], ["updated_at", "2021-10-27 14:34:56.632972"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:34:56 -0600 Processing by Admin::SheltersController#index as HTML

Shelter Load (0.8ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Rendering admin/shelters/index.html.erb within layouts/application
Rendered admin/shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 97ms (Views: 90.8ms | ActiveRecord: 0.8ms)

 (0.3ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:35:13.068590"], ["updated_at", "2021-10-27 14:35:13.068590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:35:13.070415"], ["updated_at", "2021-10-27 14:35:13.070415"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:35:13.071650"], ["updated_at", "2021-10-27 14:35:13.071650"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:35:13 -0600 Processing by Admin::SheltersController#index as HTML

Shelter Load (1.0ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Rendering admin/shelters/index.html.erb within layouts/application
Rendered admin/shelters/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 82ms (Views: 77.2ms | ActiveRecord: 1.0ms)

 (0.3ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.182576"], ["updated_at", "2021-10-27 14:39:16.182576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.185635"], ["updated_at", "2021-10-27 14:39:16.185635"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.186866"], ["updated_at", "2021-10-27 14:39:16.186866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 281], ["created_at", "2021-10-27 14:39:16.230649"], ["updated_at", "2021-10-27 14:39:16.230649"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 281], ["created_at", "2021-10-27 14:39:16.232998"], ["updated_at", "2021-10-27 14:39:16.232998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 283], ["created_at", "2021-10-27 14:39:16.234462"], ["updated_at", "2021-10-27 14:39:16.234462"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 281], ["created_at", "2021-10-27 14:39:16.235774"], ["updated_at", "2021-10-27 14:39:16.235774"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.271231"], ["updated_at", "2021-10-27 14:39:16.271231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.272441"], ["updated_at", "2021-10-27 14:39:16.272441"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.273250"], ["updated_at", "2021-10-27 14:39:16.273250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 284], ["created_at", "2021-10-27 14:39:16.274352"], ["updated_at", "2021-10-27 14:39:16.274352"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 284], ["created_at", "2021-10-27 14:39:16.275599"], ["updated_at", "2021-10-27 14:39:16.275599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 286], ["created_at", "2021-10-27 14:39:16.276857"], ["updated_at", "2021-10-27 14:39:16.276857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 284], ["created_at", "2021-10-27 14:39:16.278101"], ["updated_at", "2021-10-27 14:39:16.278101"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.284878"], ["updated_at", "2021-10-27 14:39:16.284878"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.285952"], ["updated_at", "2021-10-27 14:39:16.285952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.286765"], ["updated_at", "2021-10-27 14:39:16.286765"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 287], ["created_at", "2021-10-27 14:39:16.287753"], ["updated_at", "2021-10-27 14:39:16.287753"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 287], ["created_at", "2021-10-27 14:39:16.289008"], ["updated_at", "2021-10-27 14:39:16.289008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 289], ["created_at", "2021-10-27 14:39:16.290306"], ["updated_at", "2021-10-27 14:39:16.290306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 287], ["created_at", "2021-10-27 14:39:16.291234"], ["updated_at", "2021-10-27 14:39:16.291234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.295703"], ["updated_at", "2021-10-27 14:39:16.295703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.296790"], ["updated_at", "2021-10-27 14:39:16.296790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.297815"], ["updated_at", "2021-10-27 14:39:16.297815"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 290], ["created_at", "2021-10-27 14:39:16.298809"], ["updated_at", "2021-10-27 14:39:16.298809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 290], ["created_at", "2021-10-27 14:39:16.299810"], ["updated_at", "2021-10-27 14:39:16.299810"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 292], ["created_at", "2021-10-27 14:39:16.301112"], ["updated_at", "2021-10-27 14:39:16.301112"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 290], ["created_at", "2021-10-27 14:39:16.302322"], ["updated_at", "2021-10-27 14:39:16.302322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.305822"], ["updated_at", "2021-10-27 14:39:16.305822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.306642"], ["updated_at", "2021-10-27 14:39:16.306642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.307425"], ["updated_at", "2021-10-27 14:39:16.307425"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 293], ["created_at", "2021-10-27 14:39:16.308637"], ["updated_at", "2021-10-27 14:39:16.308637"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 293], ["created_at", "2021-10-27 14:39:16.310037"], ["updated_at", "2021-10-27 14:39:16.310037"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 295], ["created_at", "2021-10-27 14:39:16.311550"], ["updated_at", "2021-10-27 14:39:16.311550"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 293], ["created_at", "2021-10-27 14:39:16.312537"], ["updated_at", "2021-10-27 14:39:16.312537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.315483"], ["updated_at", "2021-10-27 14:39:16.315483"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.316598"], ["updated_at", "2021-10-27 14:39:16.316598"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.317618"], ["updated_at", "2021-10-27 14:39:16.317618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 296], ["created_at", "2021-10-27 14:39:16.318629"], ["updated_at", "2021-10-27 14:39:16.318629"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 296], ["created_at", "2021-10-27 14:39:16.319628"], ["updated_at", "2021-10-27 14:39:16.319628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 298], ["created_at", "2021-10-27 14:39:16.320927"], ["updated_at", "2021-10-27 14:39:16.320927"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 296], ["created_at", "2021-10-27 14:39:16.322096"], ["updated_at", "2021-10-27 14:39:16.322096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.7ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.325739"], ["updated_at", "2021-10-27 14:39:16.325739"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.326759"], ["updated_at", "2021-10-27 14:39:16.326759"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.327584"], ["updated_at", "2021-10-27 14:39:16.327584"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 299], ["created_at", "2021-10-27 14:39:16.329021"], ["updated_at", "2021-10-27 14:39:16.329021"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 299], ["created_at", "2021-10-27 14:39:16.330264"], ["updated_at", "2021-10-27 14:39:16.330264"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 301], ["created_at", "2021-10-27 14:39:16.331328"], ["updated_at", "2021-10-27 14:39:16.331328"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 299], ["created_at", "2021-10-27 14:39:16.332587"], ["updated_at", "2021-10-27 14:39:16.332587"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.9ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.335454"], ["updated_at", "2021-10-27 14:39:16.335454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.336538"], ["updated_at", "2021-10-27 14:39:16.336538"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.337554"], ["updated_at", "2021-10-27 14:39:16.337554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 302], ["created_at", "2021-10-27 14:39:16.338627"], ["updated_at", "2021-10-27 14:39:16.338627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 302], ["created_at", "2021-10-27 14:39:16.339700"], ["updated_at", "2021-10-27 14:39:16.339700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 304], ["created_at", "2021-10-27 14:39:16.341213"], ["updated_at", "2021-10-27 14:39:16.341213"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 302], ["created_at", "2021-10-27 14:39:16.342262"], ["updated_at", "2021-10-27 14:39:16.342262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.6ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.348204"], ["updated_at", "2021-10-27 14:39:16.348204"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.349279"], ["updated_at", "2021-10-27 14:39:16.349279"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.350138"], ["updated_at", "2021-10-27 14:39:16.350138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 305], ["created_at", "2021-10-27 14:39:16.351215"], ["updated_at", "2021-10-27 14:39:16.351215"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 305], ["created_at", "2021-10-27 14:39:16.352590"], ["updated_at", "2021-10-27 14:39:16.352590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 307], ["created_at", "2021-10-27 14:39:16.354350"], ["updated_at", "2021-10-27 14:39:16.354350"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 305], ["created_at", "2021-10-27 14:39:16.355450"], ["updated_at", "2021-10-27 14:39:16.355450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.357622"], ["updated_at", "2021-10-27 14:39:16.357622"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.358510"], ["updated_at", "2021-10-27 14:39:16.358510"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.359359"], ["updated_at", "2021-10-27 14:39:16.359359"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 308], ["created_at", "2021-10-27 14:39:16.360657"], ["updated_at", "2021-10-27 14:39:16.360657"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 308], ["created_at", "2021-10-27 14:39:16.361866"], ["updated_at", "2021-10-27 14:39:16.361866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 310], ["created_at", "2021-10-27 14:39:16.362980"], ["updated_at", "2021-10-27 14:39:16.362980"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 308], ["created_at", "2021-10-27 14:39:16.364298"], ["updated_at", "2021-10-27 14:39:16.364298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 308], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.368064"], ["updated_at", "2021-10-27 14:39:16.368064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.369531"], ["updated_at", "2021-10-27 14:39:16.369531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.370380"], ["updated_at", "2021-10-27 14:39:16.370380"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 311], ["created_at", "2021-10-27 14:39:16.371411"], ["updated_at", "2021-10-27 14:39:16.371411"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 311], ["created_at", "2021-10-27 14:39:16.372396"], ["updated_at", "2021-10-27 14:39:16.372396"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 313], ["created_at", "2021-10-27 14:39:16.373452"], ["updated_at", "2021-10-27 14:39:16.373452"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 311], ["created_at", "2021-10-27 14:39:16.374423"], ["updated_at", "2021-10-27 14:39:16.374423"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 311], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.376931"], ["updated_at", "2021-10-27 14:39:16.376931"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.377786"], ["updated_at", "2021-10-27 14:39:16.377786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.378576"], ["updated_at", "2021-10-27 14:39:16.378576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 314], ["created_at", "2021-10-27 14:39:16.379674"], ["updated_at", "2021-10-27 14:39:16.379674"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 314], ["created_at", "2021-10-27 14:39:16.381101"], ["updated_at", "2021-10-27 14:39:16.381101"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 316], ["created_at", "2021-10-27 14:39:16.382285"], ["updated_at", "2021-10-27 14:39:16.382285"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 314], ["created_at", "2021-10-27 14:39:16.383429"], ["updated_at", "2021-10-27 14:39:16.383429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 314], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.386150"], ["updated_at", "2021-10-27 14:39:16.386150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.387052"], ["updated_at", "2021-10-27 14:39:16.387052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.388133"], ["updated_at", "2021-10-27 14:39:16.388133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 317], ["created_at", "2021-10-27 14:39:16.389375"], ["updated_at", "2021-10-27 14:39:16.389375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 317], ["created_at", "2021-10-27 14:39:16.390440"], ["updated_at", "2021-10-27 14:39:16.390440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 319], ["created_at", "2021-10-27 14:39:16.391623"], ["updated_at", "2021-10-27 14:39:16.391623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 317], ["created_at", "2021-10-27 14:39:16.393035"], ["updated_at", "2021-10-27 14:39:16.393035"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 317]]
 (0.1ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.442592"], ["updated_at", "2021-10-27 14:39:27.442592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.444718"], ["updated_at", "2021-10-27 14:39:27.444718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.445636"], ["updated_at", "2021-10-27 14:39:27.445636"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (2.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 320], ["created_at", "2021-10-27 14:39:27.480338"], ["updated_at", "2021-10-27 14:39:27.480338"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 320], ["created_at", "2021-10-27 14:39:27.483559"], ["updated_at", "2021-10-27 14:39:27.483559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 322], ["created_at", "2021-10-27 14:39:27.484843"], ["updated_at", "2021-10-27 14:39:27.484843"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 320], ["created_at", "2021-10-27 14:39:27.486099"], ["updated_at", "2021-10-27 14:39:27.486099"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.527399"], ["updated_at", "2021-10-27 14:39:27.527399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.528400"], ["updated_at", "2021-10-27 14:39:27.528400"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.529349"], ["updated_at", "2021-10-27 14:39:27.529349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 323], ["created_at", "2021-10-27 14:39:27.530722"], ["updated_at", "2021-10-27 14:39:27.530722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 323], ["created_at", "2021-10-27 14:39:27.531969"], ["updated_at", "2021-10-27 14:39:27.531969"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 325], ["created_at", "2021-10-27 14:39:27.533138"], ["updated_at", "2021-10-27 14:39:27.533138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 323], ["created_at", "2021-10-27 14:39:27.534476"], ["updated_at", "2021-10-27 14:39:27.534476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.540956"], ["updated_at", "2021-10-27 14:39:27.540956"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.542067"], ["updated_at", "2021-10-27 14:39:27.542067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.542985"], ["updated_at", "2021-10-27 14:39:27.542985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 326], ["created_at", "2021-10-27 14:39:27.543985"], ["updated_at", "2021-10-27 14:39:27.543985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 326], ["created_at", "2021-10-27 14:39:27.545026"], ["updated_at", "2021-10-27 14:39:27.545026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 328], ["created_at", "2021-10-27 14:39:27.546344"], ["updated_at", "2021-10-27 14:39:27.546344"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 326], ["created_at", "2021-10-27 14:39:27.547312"], ["updated_at", "2021-10-27 14:39:27.547312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.551808"], ["updated_at", "2021-10-27 14:39:27.551808"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.552717"], ["updated_at", "2021-10-27 14:39:27.552717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.553789"], ["updated_at", "2021-10-27 14:39:27.553789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 329], ["created_at", "2021-10-27 14:39:27.555056"], ["updated_at", "2021-10-27 14:39:27.555056"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 329], ["created_at", "2021-10-27 14:39:27.556142"], ["updated_at", "2021-10-27 14:39:27.556142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 331], ["created_at", "2021-10-27 14:39:27.557559"], ["updated_at", "2021-10-27 14:39:27.557559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 329], ["created_at", "2021-10-27 14:39:27.558833"], ["updated_at", "2021-10-27 14:39:27.558833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.562484"], ["updated_at", "2021-10-27 14:39:27.562484"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.563340"], ["updated_at", "2021-10-27 14:39:27.563340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.564162"], ["updated_at", "2021-10-27 14:39:27.564162"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 332], ["created_at", "2021-10-27 14:39:27.565466"], ["updated_at", "2021-10-27 14:39:27.565466"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 332], ["created_at", "2021-10-27 14:39:27.567267"], ["updated_at", "2021-10-27 14:39:27.567267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 334], ["created_at", "2021-10-27 14:39:27.568543"], ["updated_at", "2021-10-27 14:39:27.568543"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 332], ["created_at", "2021-10-27 14:39:27.569560"], ["updated_at", "2021-10-27 14:39:27.569560"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.572459"], ["updated_at", "2021-10-27 14:39:27.572459"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.573599"], ["updated_at", "2021-10-27 14:39:27.573599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.574618"], ["updated_at", "2021-10-27 14:39:27.574618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 335], ["created_at", "2021-10-27 14:39:27.575665"], ["updated_at", "2021-10-27 14:39:27.575665"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 335], ["created_at", "2021-10-27 14:39:27.576733"], ["updated_at", "2021-10-27 14:39:27.576733"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 337], ["created_at", "2021-10-27 14:39:27.578090"], ["updated_at", "2021-10-27 14:39:27.578090"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 335], ["created_at", "2021-10-27 14:39:27.579151"], ["updated_at", "2021-10-27 14:39:27.579151"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.7ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.583027"], ["updated_at", "2021-10-27 14:39:27.583027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.584265"], ["updated_at", "2021-10-27 14:39:27.584265"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.585063"], ["updated_at", "2021-10-27 14:39:27.585063"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 338], ["created_at", "2021-10-27 14:39:27.586142"], ["updated_at", "2021-10-27 14:39:27.586142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 338], ["created_at", "2021-10-27 14:39:27.587189"], ["updated_at", "2021-10-27 14:39:27.587189"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 340], ["created_at", "2021-10-27 14:39:27.588306"], ["updated_at", "2021-10-27 14:39:27.588306"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 338], ["created_at", "2021-10-27 14:39:27.589632"], ["updated_at", "2021-10-27 14:39:27.589632"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.9ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.592427"], ["updated_at", "2021-10-27 14:39:27.592427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.593650"], ["updated_at", "2021-10-27 14:39:27.593650"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.594493"], ["updated_at", "2021-10-27 14:39:27.594493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 341], ["created_at", "2021-10-27 14:39:27.595520"], ["updated_at", "2021-10-27 14:39:27.595520"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 341], ["created_at", "2021-10-27 14:39:27.596760"], ["updated_at", "2021-10-27 14:39:27.596760"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 343], ["created_at", "2021-10-27 14:39:27.598194"], ["updated_at", "2021-10-27 14:39:27.598194"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 341], ["created_at", "2021-10-27 14:39:27.599287"], ["updated_at", "2021-10-27 14:39:27.599287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.6ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.604797"], ["updated_at", "2021-10-27 14:39:27.604797"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.605781"], ["updated_at", "2021-10-27 14:39:27.605781"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.606545"], ["updated_at", "2021-10-27 14:39:27.606545"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 344], ["created_at", "2021-10-27 14:39:27.607560"], ["updated_at", "2021-10-27 14:39:27.607560"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 344], ["created_at", "2021-10-27 14:39:27.608889"], ["updated_at", "2021-10-27 14:39:27.608889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 346], ["created_at", "2021-10-27 14:39:27.610339"], ["updated_at", "2021-10-27 14:39:27.610339"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 344], ["created_at", "2021-10-27 14:39:27.611587"], ["updated_at", "2021-10-27 14:39:27.611587"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.614287"], ["updated_at", "2021-10-27 14:39:27.614287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.615203"], ["updated_at", "2021-10-27 14:39:27.615203"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.616233"], ["updated_at", "2021-10-27 14:39:27.616233"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 347], ["created_at", "2021-10-27 14:39:27.617491"], ["updated_at", "2021-10-27 14:39:27.617491"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 347], ["created_at", "2021-10-27 14:39:27.618560"], ["updated_at", "2021-10-27 14:39:27.618560"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 349], ["created_at", "2021-10-27 14:39:27.619630"], ["updated_at", "2021-10-27 14:39:27.619630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 347], ["created_at", "2021-10-27 14:39:27.620802"], ["updated_at", "2021-10-27 14:39:27.620802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 347], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.624353"], ["updated_at", "2021-10-27 14:39:27.624353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.625408"], ["updated_at", "2021-10-27 14:39:27.625408"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.626193"], ["updated_at", "2021-10-27 14:39:27.626193"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 350], ["created_at", "2021-10-27 14:39:27.627260"], ["updated_at", "2021-10-27 14:39:27.627260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 350], ["created_at", "2021-10-27 14:39:27.628468"], ["updated_at", "2021-10-27 14:39:27.628468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 352], ["created_at", "2021-10-27 14:39:27.629677"], ["updated_at", "2021-10-27 14:39:27.629677"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 350], ["created_at", "2021-10-27 14:39:27.630717"], ["updated_at", "2021-10-27 14:39:27.630717"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 350], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.633104"], ["updated_at", "2021-10-27 14:39:27.633104"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.633997"], ["updated_at", "2021-10-27 14:39:27.633997"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.634825"], ["updated_at", "2021-10-27 14:39:27.634825"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 353], ["created_at", "2021-10-27 14:39:27.635929"], ["updated_at", "2021-10-27 14:39:27.635929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 353], ["created_at", "2021-10-27 14:39:27.637244"], ["updated_at", "2021-10-27 14:39:27.637244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 355], ["created_at", "2021-10-27 14:39:27.638495"], ["updated_at", "2021-10-27 14:39:27.638495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 353], ["created_at", "2021-10-27 14:39:27.639558"], ["updated_at", "2021-10-27 14:39:27.639558"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 353], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.642427"], ["updated_at", "2021-10-27 14:39:27.642427"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.643351"], ["updated_at", "2021-10-27 14:39:27.643351"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.644469"], ["updated_at", "2021-10-27 14:39:27.644469"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 356], ["created_at", "2021-10-27 14:39:27.645775"], ["updated_at", "2021-10-27 14:39:27.645775"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 356], ["created_at", "2021-10-27 14:39:27.646880"], ["updated_at", "2021-10-27 14:39:27.646880"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 358], ["created_at", "2021-10-27 14:39:27.648175"], ["updated_at", "2021-10-27 14:39:27.648175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 356], ["created_at", "2021-10-27 14:39:27.649591"], ["updated_at", "2021-10-27 14:39:27.649591"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 356]]
 (0.1ms)  ROLLBACK
 (1.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.5ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:00:18.420789"], ["updated_at", "2021-10-27 17:00:18.420789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:00:18.423635"], ["updated_at", "2021-10-27 17:00:18.423635"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:00:18.425209"], ["updated_at", "2021-10-27 17:00:18.425209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:00:18 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (1.0ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Shelter Load (1.0ms)  SELECT "shelters".* FROM "shelters"
Shelter Load (2.7ms)  SELECT "shelters".* FROM "shelters" INNER JOIN "pets" ON "pets"."shelter_id" = "shelters"."id"
Pet Load (1.5ms)  SELECT "pets".* FROM "pets"
Application Load (2.1ms)  SELECT "applications".* FROM "applications"
 (26.2ms)  DROP DATABASE IF EXISTS "adopt_dont_shop_test"
 (169.4ms)  CREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'
SQL (0.9ms)  CREATE EXTENSION IF NOT EXISTS "plpgsql"
 (2.1ms)  DROP TABLE IF EXISTS "application_pets" CASCADE
 (8.3ms)  CREATE TABLE "application_pets" ("id" bigserial primary key, "pet_id" bigint, "application_id" bigint, "status" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (1.2ms)  CREATE  INDEX  "index_application_pets_on_application_id" ON "application_pets"  ("application_id")
 (0.8ms)  CREATE  INDEX  "index_application_pets_on_pet_id" ON "application_pets"  ("pet_id")
 (0.5ms)  DROP TABLE IF EXISTS "applications" CASCADE
 (3.5ms)  CREATE TABLE "applications" ("id" bigserial primary key, "applicant_name" character varying, "street_address" character varying, "city" character varying, "state" character varying, "zipcode" character varying, "application_status" character varying, "why" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.2ms)  DROP TABLE IF EXISTS "pets" CASCADE
 (3.0ms)  CREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (2.5ms)  CREATE  INDEX  "index_pets_on_shelter_id" ON "pets"  ("shelter_id")
 (0.3ms)  DROP TABLE IF EXISTS "shelters" CASCADE
 (3.4ms)  CREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (2.9ms)  DROP TABLE IF EXISTS "veterinarians" CASCADE
 (3.8ms)  CREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (0.9ms)  CREATE  INDEX  "index_veterinarians_on_veterinary_office_id" ON "veterinarians"  ("veterinary_office_id")
 (0.2ms)  DROP TABLE IF EXISTS "veterinary_offices" CASCADE
 (3.5ms)  CREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
 (3.0ms)  ALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_6ac8983e3b"

FOREIGN KEY (“application_id”)

REFERENCES "applications" ("id")



 (1.4ms)  ALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_412710cd26"

FOREIGN KEY (“pet_id”)

REFERENCES "pets" ("id")



 (1.3ms)  ALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"

FOREIGN KEY (“shelter_id”)

REFERENCES "shelters" ("id")



 (1.6ms)  ALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"

FOREIGN KEY (“veterinary_office_id”)

REFERENCES "veterinary_offices" ("id")



 (2.4ms)  CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
 (0.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  INSERT INTO "schema_migrations" (version) VALUES (20211024000652)
 (0.2ms)  INSERT INTO "schema_migrations" (version) VALUES

(20210212235502), (20210213001632), (20210212235735), (20211023230147), (20210213001717);



 (4.6ms)  CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
ActiveRecord::InternalMetadata Load (0.3ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
ActiveRecord::InternalMetadata Create (0.3ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"  [["key", "environment"], ["value", "test"], ["created_at", "2021-10-27 17:39:55.336687"], ["updated_at", "2021-10-27 17:39:55.336687"]]
 (0.2ms)  COMMIT
ActiveRecord::InternalMetadata Load (0.2ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
 (0.1ms)  BEGIN
 (0.1ms)  COMMIT
 (0.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:39:55.428706"], ["updated_at", "2021-10-27 17:39:55.428706"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:39:55.431276"], ["updated_at", "2021-10-27 17:39:55.431276"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.1ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:39:55.432266"], ["updated_at", "2021-10-27 17:39:55.432266"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:39:55 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (6.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (1.0ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (ap
  plications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (117.6ms)

Completed 500 Internal Server Error in 124ms (ActiveRecord: 100.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:39:55.634231"], ["updated_at", "2021-10-27 17:39:55.634231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:39:55.635574"], ["updated_at", "2021-10-27 17:39:55.635574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:39:55.636474"], ["updated_at", "2021-10-27 17:39:55.636474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 4], ["created_at", "2021-10-27 17:39:55.646906"], ["updated_at", "2021-10-27 17:39:55.646906"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 4], ["created_at", "2021-10-27 17:39:55.649299"], ["updated_at", "2021-10-27 17:39:55.649299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 5], ["created_at", "2021-10-27 17:39:55.652659"], ["updated_at", "2021-10-27 17:39:55.652659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 6], ["created_at", "2021-10-27 17:39:55.654227"], ["updated_at", "2021-10-27 17:39:55.654227"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.7ms)  SAVEPOINT active_record_1
Application Create (1.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:39:55.664366"], ["updated_at", "2021-10-27 17:39:55.664366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:39:55.666664"], ["updated_at", "2021-10-27 17:39:55.666664"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
ApplicationPet Create (3.1ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 1], ["application_id", 1], ["created_at", "2021-10-27 17:39:55.694124"], ["updated_at", "2021-10-27 17:39:55.694124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 4], ["application_id", 2], ["created_at", "2021-10-27 17:39:55.699321"], ["updated_at", "2021-10-27 17:39:55.699321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:39:55 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (0.5ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (ap
  plications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (2.3ms)

Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.9ms)

 (0.1ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:40:10.543132"], ["updated_at", "2021-10-27 17:40:10.543132"]]
 (0.7ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:40:10.547443"], ["updated_at", "2021-10-27 17:40:10.547443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:40:10.548618"], ["updated_at", "2021-10-27 17:40:10.548618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:40:10 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (1.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (5.6ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (38.3ms)

Completed 200 OK in 142ms (Views: 110.3ms | ActiveRecord: 27.8ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:40:10.748855"], ["updated_at", "2021-10-27 17:40:10.748855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:40:10.750042"], ["updated_at", "2021-10-27 17:40:10.750042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:40:10.750912"], ["updated_at", "2021-10-27 17:40:10.750912"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 10], ["created_at", "2021-10-27 17:40:10.759893"], ["updated_at", "2021-10-27 17:40:10.759893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 10], ["created_at", "2021-10-27 17:40:10.761801"], ["updated_at", "2021-10-27 17:40:10.761801"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 11], ["created_at", "2021-10-27 17:40:10.763061"], ["updated_at", "2021-10-27 17:40:10.763061"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 12], ["created_at", "2021-10-27 17:40:10.764522"], ["updated_at", "2021-10-27 17:40:10.764522"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:40:10.774031"], ["updated_at", "2021-10-27 17:40:10.774031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (1.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:40:10.775684"], ["updated_at", "2021-10-27 17:40:10.775684"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
ApplicationPet Create (1.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 5], ["application_id", 3], ["created_at", "2021-10-27 17:40:10.815512"], ["updated_at", "2021-10-27 17:40:10.815512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
ApplicationPet Create (1.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 8], ["application_id", 4], ["created_at", "2021-10-27 17:40:10.818652"], ["updated_at", "2021-10-27 17:40:10.818652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:40:10 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (3.3ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (4.7ms)

Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 3.7ms)

 (0.3ms)  ROLLBACK
 (2.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:44:33.855872"], ["updated_at", "2021-10-27 17:44:33.855872"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:44:33.858094"], ["updated_at", "2021-10-27 17:44:33.858094"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:44:33.859163"], ["updated_at", "2021-10-27 17:44:33.859163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:44:33 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.9ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (4.2ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (38.3ms)

Completed 200 OK in 131ms (Views: 100.4ms | ActiveRecord: 26.7ms)

 (3.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:44:34.054331"], ["updated_at", "2021-10-27 17:44:34.054331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:44:34.055700"], ["updated_at", "2021-10-27 17:44:34.055700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:44:34.056539"], ["updated_at", "2021-10-27 17:44:34.056539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 16], ["created_at", "2021-10-27 17:44:34.065808"], ["updated_at", "2021-10-27 17:44:34.065808"]]
 (1.7ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 16], ["created_at", "2021-10-27 17:44:34.069278"], ["updated_at", "2021-10-27 17:44:34.069278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 17], ["created_at", "2021-10-27 17:44:34.070664"], ["updated_at", "2021-10-27 17:44:34.070664"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 18], ["created_at", "2021-10-27 17:44:34.072156"], ["updated_at", "2021-10-27 17:44:34.072156"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:44:34.086706"], ["updated_at", "2021-10-27 17:44:34.086706"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (3.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:44:34.088152"], ["updated_at", "2021-10-27 17:44:34.088152"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Pet Load (0.7ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
ApplicationPet Create (1.0ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 9], ["application_id", 5], ["created_at", "2021-10-27 17:44:34.128597"], ["updated_at", "2021-10-27 17:44:34.128597"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Pet Load (1.7ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
ApplicationPet Create (2.1ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 12], ["application_id", 6], ["created_at", "2021-10-27 17:44:34.133096"], ["updated_at", "2021-10-27 17:44:34.133096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:44:34 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (6.5ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (7.9ms)

Completed 200 OK in 9ms (Views: 1.7ms | ActiveRecord: 6.8ms)

 (0.3ms)  ROLLBACK
 (3.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:48:16.428798"], ["updated_at", "2021-10-27 17:48:16.428798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:48:16.431958"], ["updated_at", "2021-10-27 17:48:16.431958"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:48:16.434012"], ["updated_at", "2021-10-27 17:48:16.434012"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:48:16 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.9ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (5.3ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (43.2ms)

Completed 200 OK in 145ms (Views: 117.2ms | ActiveRecord: 23.5ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:48:16.643136"], ["updated_at", "2021-10-27 17:48:16.643136"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:48:16.644530"], ["updated_at", "2021-10-27 17:48:16.644530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:48:16.645736"], ["updated_at", "2021-10-27 17:48:16.645736"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 22], ["created_at", "2021-10-27 17:48:16.655202"], ["updated_at", "2021-10-27 17:48:16.655202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 22], ["created_at", "2021-10-27 17:48:16.657697"], ["updated_at", "2021-10-27 17:48:16.657697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 23], ["created_at", "2021-10-27 17:48:16.658893"], ["updated_at", "2021-10-27 17:48:16.658893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 24], ["created_at", "2021-10-27 17:48:16.660506"], ["updated_at", "2021-10-27 17:48:16.660506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Application Create (0.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:48:16.669948"], ["updated_at", "2021-10-27 17:48:16.669948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:48:16.671677"], ["updated_at", "2021-10-27 17:48:16.671677"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
ApplicationPet Create (1.0ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 13], ["application_id", 7], ["created_at", "2021-10-27 17:48:16.690323"], ["updated_at", "2021-10-27 17:48:16.690323"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 16], ["LIMIT", 1]]
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 16], ["application_id", 8], ["created_at", "2021-10-27 17:48:16.693028"], ["updated_at", "2021-10-27 17:48:16.693028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:48:16 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (2.6ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (4.0ms)

Completed 200 OK in 5ms (Views: 1.6ms | ActiveRecord: 3.0ms)

 (0.3ms)  ROLLBACK
 (2.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:48:49.438780"], ["updated_at", "2021-10-27 17:48:49.438780"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:48:49.442023"], ["updated_at", "2021-10-27 17:48:49.442023"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:48:49.443781"], ["updated_at", "2021-10-27 17:48:49.443781"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:48:49 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (1.5ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (5.8ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (49.1ms)

Completed 200 OK in 143ms (Views: 111.8ms | ActiveRecord: 27.4ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (3.1ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:48:49.649018"], ["updated_at", "2021-10-27 17:48:49.649018"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:48:49.653237"], ["updated_at", "2021-10-27 17:48:49.653237"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:48:49.654418"], ["updated_at", "2021-10-27 17:48:49.654418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 28], ["created_at", "2021-10-27 17:48:49.663936"], ["updated_at", "2021-10-27 17:48:49.663936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 28], ["created_at", "2021-10-27 17:48:49.666300"], ["updated_at", "2021-10-27 17:48:49.666300"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 29], ["created_at", "2021-10-27 17:48:49.667600"], ["updated_at", "2021-10-27 17:48:49.667600"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 30], ["created_at", "2021-10-27 17:48:49.668995"], ["updated_at", "2021-10-27 17:48:49.668995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:48:49.678130"], ["updated_at", "2021-10-27 17:48:49.678130"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:48:49.679474"], ["updated_at", "2021-10-27 17:48:49.679474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
ApplicationPet Create (1.1ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 17], ["application_id", 9], ["created_at", "2021-10-27 17:48:49.700110"], ["updated_at", "2021-10-27 17:48:49.700110"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 20], ["LIMIT", 1]]
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 20], ["application_id", 10], ["created_at", "2021-10-27 17:48:49.703430"], ["updated_at", "2021-10-27 17:48:49.703430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:48:49 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.9ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (3.2ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (5.1ms)

Completed 200 OK in 6ms (Views: 1.7ms | ActiveRecord: 4.0ms)

 (0.2ms)  ROLLBACK
 (1.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.5ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:50:43.118113"], ["updated_at", "2021-10-27 17:50:43.118113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:50:43.121331"], ["updated_at", "2021-10-27 17:50:43.121331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:50:43.123195"], ["updated_at", "2021-10-27 17:50:43.123195"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:50:43 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.8ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (4.3ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (41.2ms)

Completed 200 OK in 141ms (Views: 115.2ms | ActiveRecord: 21.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:50:43.324860"], ["updated_at", "2021-10-27 17:50:43.324860"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:50:43.326067"], ["updated_at", "2021-10-27 17:50:43.326067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:50:43.327077"], ["updated_at", "2021-10-27 17:50:43.327077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 34], ["created_at", "2021-10-27 17:50:43.335802"], ["updated_at", "2021-10-27 17:50:43.335802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 34], ["created_at", "2021-10-27 17:50:43.337249"], ["updated_at", "2021-10-27 17:50:43.337249"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 35], ["created_at", "2021-10-27 17:50:43.338710"], ["updated_at", "2021-10-27 17:50:43.338710"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 36], ["created_at", "2021-10-27 17:50:43.339921"], ["updated_at", "2021-10-27 17:50:43.339921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:50:43.348623"], ["updated_at", "2021-10-27 17:50:43.348623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:50:43.350133"], ["updated_at", "2021-10-27 17:50:43.350133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
ApplicationPet Create (0.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 21], ["application_id", 11], ["created_at", "2021-10-27 17:50:43.367739"], ["updated_at", "2021-10-27 17:50:43.367739"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 24], ["LIMIT", 1]]
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 24], ["application_id", 12], ["created_at", "2021-10-27 17:50:43.370204"], ["updated_at", "2021-10-27 17:50:43.370204"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:50:43 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (3.0ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (4.1ms)

Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 3.2ms)

 (0.2ms)  ROLLBACK
 (1.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:28.748822"], ["updated_at", "2021-10-27 17:59:28.748822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:28.750946"], ["updated_at", "2021-10-27 17:59:28.750946"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:28.751933"], ["updated_at", "2021-10-27 17:59:28.751933"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:28 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.8ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (4.5ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (31.8ms)

Completed 200 OK in 130ms (Views: 105.6ms | ActiveRecord: 20.5ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:28.944937"], ["updated_at", "2021-10-27 17:59:28.944937"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:28.946171"], ["updated_at", "2021-10-27 17:59:28.946171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:28.947157"], ["updated_at", "2021-10-27 17:59:28.947157"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 40], ["created_at", "2021-10-27 17:59:28.956138"], ["updated_at", "2021-10-27 17:59:28.956138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 40], ["created_at", "2021-10-27 17:59:28.957840"], ["updated_at", "2021-10-27 17:59:28.957840"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 41], ["created_at", "2021-10-27 17:59:28.959302"], ["updated_at", "2021-10-27 17:59:28.959302"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 42], ["created_at", "2021-10-27 17:59:28.960340"], ["updated_at", "2021-10-27 17:59:28.960340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:59:28.969517"], ["updated_at", "2021-10-27 17:59:28.969517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:59:28.970989"], ["updated_at", "2021-10-27 17:59:28.970989"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 25], ["LIMIT", 1]]
ApplicationPet Create (0.8ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 25], ["application_id", 13], ["created_at", "2021-10-27 17:59:29.007412"], ["updated_at", "2021-10-27 17:59:29.007412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 28], ["LIMIT", 1]]
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 28], ["application_id", 14], ["created_at", "2021-10-27 17:59:29.010110"], ["updated_at", "2021-10-27 17:59:29.010110"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:29 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (2.7ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (3.9ms)

Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 3.0ms)

 (0.2ms)  ROLLBACK
 (1.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:41.446416"], ["updated_at", "2021-10-27 17:59:41.446416"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:41.448593"], ["updated_at", "2021-10-27 17:59:41.448593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:41.449549"], ["updated_at", "2021-10-27 17:59:41.449549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:41 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.8ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (4.5ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (33.2ms)

Completed 200 OK in 124ms (Views: 99.0ms | ActiveRecord: 21.2ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:41.634798"], ["updated_at", "2021-10-27 17:59:41.634798"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:41.635886"], ["updated_at", "2021-10-27 17:59:41.635886"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:41.636618"], ["updated_at", "2021-10-27 17:59:41.636618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 46], ["created_at", "2021-10-27 17:59:41.647269"], ["updated_at", "2021-10-27 17:59:41.647269"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 46], ["created_at", "2021-10-27 17:59:41.649585"], ["updated_at", "2021-10-27 17:59:41.649585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 47], ["created_at", "2021-10-27 17:59:41.650777"], ["updated_at", "2021-10-27 17:59:41.650777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 48], ["created_at", "2021-10-27 17:59:41.651860"], ["updated_at", "2021-10-27 17:59:41.651860"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:59:41.659968"], ["updated_at", "2021-10-27 17:59:41.659968"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:59:41.661340"], ["updated_at", "2021-10-27 17:59:41.661340"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 15], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 29], ["application_id", 15], ["created_at", "2021-10-27 17:59:41.696700"], ["updated_at", "2021-10-27 17:59:41.696700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 16], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 32], ["application_id", 16], ["created_at", "2021-10-27 17:59:41.699106"], ["updated_at", "2021-10-27 17:59:41.699106"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:41 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.6ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (2.4ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (3.9ms)

Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 3.0ms)

 (0.2ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:50.936839"], ["updated_at", "2021-10-27 17:59:50.936839"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:50.940422"], ["updated_at", "2021-10-27 17:59:50.940422"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:50.942181"], ["updated_at", "2021-10-27 17:59:50.942181"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:50 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.7ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (5.5ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (47.3ms)

Completed 200 OK in 135ms (Views: 108.8ms | ActiveRecord: 22.0ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:51.135444"], ["updated_at", "2021-10-27 17:59:51.135444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:51.136510"], ["updated_at", "2021-10-27 17:59:51.136510"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:51.137406"], ["updated_at", "2021-10-27 17:59:51.137406"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 52], ["created_at", "2021-10-27 17:59:51.146562"], ["updated_at", "2021-10-27 17:59:51.146562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 52], ["created_at", "2021-10-27 17:59:51.148250"], ["updated_at", "2021-10-27 17:59:51.148250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 53], ["created_at", "2021-10-27 17:59:51.149542"], ["updated_at", "2021-10-27 17:59:51.149542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 54], ["created_at", "2021-10-27 17:59:51.150713"], ["updated_at", "2021-10-27 17:59:51.150713"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:59:51.159387"], ["updated_at", "2021-10-27 17:59:51.159387"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:59:51.160809"], ["updated_at", "2021-10-27 17:59:51.160809"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 17], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
ApplicationPet Create (1.0ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 33], ["application_id", 17], ["created_at", "2021-10-27 17:59:51.178777"], ["updated_at", "2021-10-27 17:59:51.178777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 18], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 36], ["application_id", 18], ["created_at", "2021-10-27 17:59:51.181631"], ["updated_at", "2021-10-27 17:59:51.181631"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:51 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (2.1ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (3.6ms)

Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 2.6ms)

 (0.2ms)  ROLLBACK
 (2.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:02:58.161266"], ["updated_at", "2021-10-27 18:02:58.161266"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:02:58.165359"], ["updated_at", "2021-10-27 18:02:58.165359"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:02:58.167300"], ["updated_at", "2021-10-27 18:02:58.167300"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:02:58 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (1.2ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (4.7ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (43.8ms)

Completed 200 OK in 141ms (Views: 115.4ms | ActiveRecord: 22.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:02:58.366842"], ["updated_at", "2021-10-27 18:02:58.366842"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:02:58.367868"], ["updated_at", "2021-10-27 18:02:58.367868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:02:58.368854"], ["updated_at", "2021-10-27 18:02:58.368854"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (5.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 58], ["created_at", "2021-10-27 18:02:58.377945"], ["updated_at", "2021-10-27 18:02:58.377945"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 58], ["created_at", "2021-10-27 18:02:58.384072"], ["updated_at", "2021-10-27 18:02:58.384072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 59], ["created_at", "2021-10-27 18:02:58.385701"], ["updated_at", "2021-10-27 18:02:58.385701"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 60], ["created_at", "2021-10-27 18:02:58.386837"], ["updated_at", "2021-10-27 18:02:58.386837"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (1.0ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:02:58.395929"], ["updated_at", "2021-10-27 18:02:58.395929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:02:58.397699"], ["updated_at", "2021-10-27 18:02:58.397699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 19], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
ApplicationPet Create (2.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 37], ["application_id", 19], ["created_at", "2021-10-27 18:02:58.414628"], ["updated_at", "2021-10-27 18:02:58.414628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 20], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 40], ["application_id", 20], ["created_at", "2021-10-27 18:02:58.418923"], ["updated_at", "2021-10-27 18:02:58.418923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:02:58 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (3.2ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (4.4ms)

Completed 200 OK in 5ms (Views: 1.6ms | ActiveRecord: 3.4ms)

 (0.3ms)  ROLLBACK
 (12.8ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.3ms)  BEGIN
 (0.3ms)  SAVEPOINT active_record_1
Shelter Create (3.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:04:50.145605"], ["updated_at", "2021-10-27 18:04:50.145605"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Shelter Create (1.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:04:50.152371"], ["updated_at", "2021-10-27 18:04:50.152371"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Shelter Create (1.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:04:50.154966"], ["updated_at", "2021-10-27 18:04:50.154966"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:04:50 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.9ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (1.9ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (29.6ms)

Completed 200 OK in 130ms (Views: 108.9ms | ActiveRecord: 17.2ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:04:50.353853"], ["updated_at", "2021-10-27 18:04:50.353853"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:04:50.354912"], ["updated_at", "2021-10-27 18:04:50.354912"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:04:50.355684"], ["updated_at", "2021-10-27 18:04:50.355684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 64], ["created_at", "2021-10-27 18:04:50.365636"], ["updated_at", "2021-10-27 18:04:50.365636"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 64], ["created_at", "2021-10-27 18:04:50.367328"], ["updated_at", "2021-10-27 18:04:50.367328"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 65], ["created_at", "2021-10-27 18:04:50.368419"], ["updated_at", "2021-10-27 18:04:50.368419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 66], ["created_at", "2021-10-27 18:04:50.369969"], ["updated_at", "2021-10-27 18:04:50.369969"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:04:50.378396"], ["updated_at", "2021-10-27 18:04:50.378396"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:04:50.379623"], ["updated_at", "2021-10-27 18:04:50.379623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 21], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
ApplicationPet Create (1.0ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 41], ["application_id", 21], ["created_at", "2021-10-27 18:04:50.417032"], ["updated_at", "2021-10-27 18:04:50.417032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.7ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 22], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 44], ["application_id", 22], ["created_at", "2021-10-27 18:04:50.420421"], ["updated_at", "2021-10-27 18:04:50.420421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:04:50 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (2.6ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (3.8ms)

Completed 200 OK in 5ms (Views: 1.7ms | ActiveRecord: 2.9ms)

 (0.2ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:08:59.649882"], ["updated_at", "2021-10-27 18:08:59.649882"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:08:59.652889"], ["updated_at", "2021-10-27 18:08:59.652889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:08:59.654468"], ["updated_at", "2021-10-27 18:08:59.654468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:08:59 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.7ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (4.9ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (40.8ms)

Completed 200 OK in 139ms (Views: 113.5ms | ActiveRecord: 21.2ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:08:59.858487"], ["updated_at", "2021-10-27 18:08:59.858487"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:08:59.859570"], ["updated_at", "2021-10-27 18:08:59.859570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:08:59.860351"], ["updated_at", "2021-10-27 18:08:59.860351"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (5.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 70], ["created_at", "2021-10-27 18:08:59.869518"], ["updated_at", "2021-10-27 18:08:59.869518"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 70], ["created_at", "2021-10-27 18:08:59.876282"], ["updated_at", "2021-10-27 18:08:59.876282"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 71], ["created_at", "2021-10-27 18:08:59.877441"], ["updated_at", "2021-10-27 18:08:59.877441"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 72], ["created_at", "2021-10-27 18:08:59.878625"], ["updated_at", "2021-10-27 18:08:59.878625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:08:59.887230"], ["updated_at", "2021-10-27 18:08:59.887230"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:08:59.888758"], ["updated_at", "2021-10-27 18:08:59.888758"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
ApplicationPet Create (3.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 45], ["application_id", 23], ["created_at", "2021-10-27 18:08:59.905659"], ["updated_at", "2021-10-27 18:08:59.905659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 24], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 48], ["application_id", 24], ["created_at", "2021-10-27 18:08:59.910735"], ["updated_at", "2021-10-27 18:08:59.910735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:08:59 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (2.1ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (3.5ms)

Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 2.4ms)

 (0.3ms)  ROLLBACK
 (2.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:09:22.400117"], ["updated_at", "2021-10-27 18:09:22.400117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:09:22.402351"], ["updated_at", "2021-10-27 18:09:22.402351"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:09:22.403971"], ["updated_at", "2021-10-27 18:09:22.403971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:09:22 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.8ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (5.1ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (47.3ms)

Completed 200 OK in 137ms (Views: 111.6ms | ActiveRecord: 21.3ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:09:22.601053"], ["updated_at", "2021-10-27 18:09:22.601053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:09:22.602277"], ["updated_at", "2021-10-27 18:09:22.602277"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:09:22.603292"], ["updated_at", "2021-10-27 18:09:22.603292"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 76], ["created_at", "2021-10-27 18:09:22.612925"], ["updated_at", "2021-10-27 18:09:22.612925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 76], ["created_at", "2021-10-27 18:09:22.614641"], ["updated_at", "2021-10-27 18:09:22.614641"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 77], ["created_at", "2021-10-27 18:09:22.616420"], ["updated_at", "2021-10-27 18:09:22.616420"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 78], ["created_at", "2021-10-27 18:09:22.617748"], ["updated_at", "2021-10-27 18:09:22.617748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:09:22.626011"], ["updated_at", "2021-10-27 18:09:22.626011"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:09:22.627362"], ["updated_at", "2021-10-27 18:09:22.627362"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 25], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 49], ["application_id", 25], ["created_at", "2021-10-27 18:09:22.643953"], ["updated_at", "2021-10-27 18:09:22.643953"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 26], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 52], ["application_id", 26], ["created_at", "2021-10-27 18:09:22.646268"], ["updated_at", "2021-10-27 18:09:22.646268"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:09:22 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (3.0ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (4.3ms)

Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 3.4ms)

 (0.4ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:10:09.029098"], ["updated_at", "2021-10-27 18:10:09.029098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:10:09.032366"], ["updated_at", "2021-10-27 18:10:09.032366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:10:09.034018"], ["updated_at", "2021-10-27 18:10:09.034018"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:10:09 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.9ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (4.3ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (42.6ms)

Completed 200 OK in 138ms (Views: 113.7ms | ActiveRecord: 20.7ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:10:09.231271"], ["updated_at", "2021-10-27 18:10:09.231271"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:10:09.232659"], ["updated_at", "2021-10-27 18:10:09.232659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:10:09.233702"], ["updated_at", "2021-10-27 18:10:09.233702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 82], ["created_at", "2021-10-27 18:10:09.242481"], ["updated_at", "2021-10-27 18:10:09.242481"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (2.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 82], ["created_at", "2021-10-27 18:10:09.244554"], ["updated_at", "2021-10-27 18:10:09.244554"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 83], ["created_at", "2021-10-27 18:10:09.247697"], ["updated_at", "2021-10-27 18:10:09.247697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 84], ["created_at", "2021-10-27 18:10:09.248957"], ["updated_at", "2021-10-27 18:10:09.248957"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:10:09.256993"], ["updated_at", "2021-10-27 18:10:09.256993"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:10:09.258802"], ["updated_at", "2021-10-27 18:10:09.258802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 27], ["LIMIT", 1]]
Pet Load (0.5ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
ApplicationPet Create (1.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 53], ["application_id", 27], ["created_at", "2021-10-27 18:10:09.276243"], ["updated_at", "2021-10-27 18:10:09.276243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 28], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
ApplicationPet Create (1.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 56], ["application_id", 28], ["created_at", "2021-10-27 18:10:09.279260"], ["updated_at", "2021-10-27 18:10:09.279260"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:10:09 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (3.0ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (4.3ms)

Completed 200 OK in 5ms (Views: 1.6ms | ActiveRecord: 3.3ms)

 (1.7ms)  ROLLBACK
 (1.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:10:22.832995"], ["updated_at", "2021-10-27 18:10:22.832995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:10:22.834976"], ["updated_at", "2021-10-27 18:10:22.834976"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:10:22.835948"], ["updated_at", "2021-10-27 18:10:22.835948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:10:22 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (1.1ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (4.8ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (33.6ms)

Completed 200 OK in 128ms (Views: 102.6ms | ActiveRecord: 22.1ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:10:23.022229"], ["updated_at", "2021-10-27 18:10:23.022229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:10:23.023338"], ["updated_at", "2021-10-27 18:10:23.023338"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:10:23.024095"], ["updated_at", "2021-10-27 18:10:23.024095"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 88], ["created_at", "2021-10-27 18:10:23.033007"], ["updated_at", "2021-10-27 18:10:23.033007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 88], ["created_at", "2021-10-27 18:10:23.034952"], ["updated_at", "2021-10-27 18:10:23.034952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 89], ["created_at", "2021-10-27 18:10:23.036011"], ["updated_at", "2021-10-27 18:10:23.036011"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 90], ["created_at", "2021-10-27 18:10:23.037409"], ["updated_at", "2021-10-27 18:10:23.037409"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:10:23.046430"], ["updated_at", "2021-10-27 18:10:23.046430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:10:23.047563"], ["updated_at", "2021-10-27 18:10:23.047563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
ApplicationPet Create (1.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 57], ["application_id", 29], ["created_at", "2021-10-27 18:10:23.084212"], ["updated_at", "2021-10-27 18:10:23.084212"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 30], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 60], ["application_id", 30], ["created_at", "2021-10-27 18:10:23.087064"], ["updated_at", "2021-10-27 18:10:23.087064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:10:23 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
Pet Load (3.1ms)  SELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
Rendered admin/shelters/index.html.erb within layouts/application (4.4ms)

Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 3.5ms)

 (2.8ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.430764"], ["updated_at", "2021-10-27 18:19:50.430764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.434001"], ["updated_at", "2021-10-27 18:19:50.434001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.435984"], ["updated_at", "2021-10-27 18:19:50.435984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (2.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 91], ["created_at", "2021-10-27 18:19:50.473960"], ["updated_at", "2021-10-27 18:19:50.473960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 91], ["created_at", "2021-10-27 18:19:50.477057"], ["updated_at", "2021-10-27 18:19:50.477057"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 93], ["created_at", "2021-10-27 18:19:50.478344"], ["updated_at", "2021-10-27 18:19:50.478344"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 91], ["created_at", "2021-10-27 18:19:50.479828"], ["updated_at", "2021-10-27 18:19:50.479828"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.521145"], ["updated_at", "2021-10-27 18:19:50.521145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.522502"], ["updated_at", "2021-10-27 18:19:50.522502"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.523486"], ["updated_at", "2021-10-27 18:19:50.523486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 94], ["created_at", "2021-10-27 18:19:50.524609"], ["updated_at", "2021-10-27 18:19:50.524609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 94], ["created_at", "2021-10-27 18:19:50.525759"], ["updated_at", "2021-10-27 18:19:50.525759"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 96], ["created_at", "2021-10-27 18:19:50.527222"], ["updated_at", "2021-10-27 18:19:50.527222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 94], ["created_at", "2021-10-27 18:19:50.528177"], ["updated_at", "2021-10-27 18:19:50.528177"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.534532"], ["updated_at", "2021-10-27 18:19:50.534532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.535570"], ["updated_at", "2021-10-27 18:19:50.535570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.536357"], ["updated_at", "2021-10-27 18:19:50.536357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 97], ["created_at", "2021-10-27 18:19:50.537366"], ["updated_at", "2021-10-27 18:19:50.537366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 97], ["created_at", "2021-10-27 18:19:50.538638"], ["updated_at", "2021-10-27 18:19:50.538638"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 99], ["created_at", "2021-10-27 18:19:50.539834"], ["updated_at", "2021-10-27 18:19:50.539834"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 97], ["created_at", "2021-10-27 18:19:50.540749"], ["updated_at", "2021-10-27 18:19:50.540749"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.545402"], ["updated_at", "2021-10-27 18:19:50.545402"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.546567"], ["updated_at", "2021-10-27 18:19:50.546567"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.547596"], ["updated_at", "2021-10-27 18:19:50.547596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 100], ["created_at", "2021-10-27 18:19:50.548722"], ["updated_at", "2021-10-27 18:19:50.548722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 100], ["created_at", "2021-10-27 18:19:50.550526"], ["updated_at", "2021-10-27 18:19:50.550526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 102], ["created_at", "2021-10-27 18:19:50.551684"], ["updated_at", "2021-10-27 18:19:50.551684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 100], ["created_at", "2021-10-27 18:19:50.552662"], ["updated_at", "2021-10-27 18:19:50.552662"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.556338"], ["updated_at", "2021-10-27 18:19:50.556338"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.557246"], ["updated_at", "2021-10-27 18:19:50.557246"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.558336"], ["updated_at", "2021-10-27 18:19:50.558336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 103], ["created_at", "2021-10-27 18:19:50.559558"], ["updated_at", "2021-10-27 18:19:50.559558"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 103], ["created_at", "2021-10-27 18:19:50.560560"], ["updated_at", "2021-10-27 18:19:50.560560"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 105], ["created_at", "2021-10-27 18:19:50.561820"], ["updated_at", "2021-10-27 18:19:50.561820"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 103], ["created_at", "2021-10-27 18:19:50.563455"], ["updated_at", "2021-10-27 18:19:50.563455"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.566348"], ["updated_at", "2021-10-27 18:19:50.566348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.567235"], ["updated_at", "2021-10-27 18:19:50.567235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.568063"], ["updated_at", "2021-10-27 18:19:50.568063"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 106], ["created_at", "2021-10-27 18:19:50.569147"], ["updated_at", "2021-10-27 18:19:50.569147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 106], ["created_at", "2021-10-27 18:19:50.570490"], ["updated_at", "2021-10-27 18:19:50.570490"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 108], ["created_at", "2021-10-27 18:19:50.571618"], ["updated_at", "2021-10-27 18:19:50.571618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 106], ["created_at", "2021-10-27 18:19:50.572634"], ["updated_at", "2021-10-27 18:19:50.572634"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (7.6ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.583506"], ["updated_at", "2021-10-27 18:19:50.583506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.584535"], ["updated_at", "2021-10-27 18:19:50.584535"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.585642"], ["updated_at", "2021-10-27 18:19:50.585642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 109], ["created_at", "2021-10-27 18:19:50.587024"], ["updated_at", "2021-10-27 18:19:50.587024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 109], ["created_at", "2021-10-27 18:19:50.588141"], ["updated_at", "2021-10-27 18:19:50.588141"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 111], ["created_at", "2021-10-27 18:19:50.589346"], ["updated_at", "2021-10-27 18:19:50.589346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 109], ["created_at", "2021-10-27 18:19:50.590771"], ["updated_at", "2021-10-27 18:19:50.590771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (2.2ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.594998"], ["updated_at", "2021-10-27 18:19:50.594998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.595957"], ["updated_at", "2021-10-27 18:19:50.595957"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.596903"], ["updated_at", "2021-10-27 18:19:50.596903"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 112], ["created_at", "2021-10-27 18:19:50.598294"], ["updated_at", "2021-10-27 18:19:50.598294"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 112], ["created_at", "2021-10-27 18:19:50.599628"], ["updated_at", "2021-10-27 18:19:50.599628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 114], ["created_at", "2021-10-27 18:19:50.600837"], ["updated_at", "2021-10-27 18:19:50.600837"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 112], ["created_at", "2021-10-27 18:19:50.601994"], ["updated_at", "2021-10-27 18:19:50.601994"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (2.3ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.608661"], ["updated_at", "2021-10-27 18:19:50.608661"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.609879"], ["updated_at", "2021-10-27 18:19:50.609879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.610947"], ["updated_at", "2021-10-27 18:19:50.610947"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 115], ["created_at", "2021-10-27 18:19:50.612079"], ["updated_at", "2021-10-27 18:19:50.612079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 115], ["created_at", "2021-10-27 18:19:50.613448"], ["updated_at", "2021-10-27 18:19:50.613448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 117], ["created_at", "2021-10-27 18:19:50.615194"], ["updated_at", "2021-10-27 18:19:50.615194"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 115], ["created_at", "2021-10-27 18:19:50.616638"], ["updated_at", "2021-10-27 18:19:50.616638"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.618963"], ["updated_at", "2021-10-27 18:19:50.618963"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.619929"], ["updated_at", "2021-10-27 18:19:50.619929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.620864"], ["updated_at", "2021-10-27 18:19:50.620864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 118], ["created_at", "2021-10-27 18:19:50.622241"], ["updated_at", "2021-10-27 18:19:50.622241"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 118], ["created_at", "2021-10-27 18:19:50.623371"], ["updated_at", "2021-10-27 18:19:50.623371"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 120], ["created_at", "2021-10-27 18:19:50.624590"], ["updated_at", "2021-10-27 18:19:50.624590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 118], ["created_at", "2021-10-27 18:19:50.625979"], ["updated_at", "2021-10-27 18:19:50.625979"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (1.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:19:50.644267"], ["updated_at", "2021-10-27 18:19:50.644267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:19:50.646454"], ["updated_at", "2021-10-27 18:19:50.646454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.649778"], ["updated_at", "2021-10-27 18:19:50.649778"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.650721"], ["updated_at", "2021-10-27 18:19:50.650721"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.651541"], ["updated_at", "2021-10-27 18:19:50.651541"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 121], ["created_at", "2021-10-27 18:19:50.652686"], ["updated_at", "2021-10-27 18:19:50.652686"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 121], ["created_at", "2021-10-27 18:19:50.654247"], ["updated_at", "2021-10-27 18:19:50.654247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 123], ["created_at", "2021-10-27 18:19:50.655424"], ["updated_at", "2021-10-27 18:19:50.655424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 121], ["created_at", "2021-10-27 18:19:50.656588"], ["updated_at", "2021-10-27 18:19:50.656588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 121], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.660069"], ["updated_at", "2021-10-27 18:19:50.660069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.661256"], ["updated_at", "2021-10-27 18:19:50.661256"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.662373"], ["updated_at", "2021-10-27 18:19:50.662373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 124], ["created_at", "2021-10-27 18:19:50.663458"], ["updated_at", "2021-10-27 18:19:50.663458"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 124], ["created_at", "2021-10-27 18:19:50.664618"], ["updated_at", "2021-10-27 18:19:50.664618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 126], ["created_at", "2021-10-27 18:19:50.666063"], ["updated_at", "2021-10-27 18:19:50.666063"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 124], ["created_at", "2021-10-27 18:19:50.667160"], ["updated_at", "2021-10-27 18:19:50.667160"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 124], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.669872"], ["updated_at", "2021-10-27 18:19:50.669872"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.670819"], ["updated_at", "2021-10-27 18:19:50.670819"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.671724"], ["updated_at", "2021-10-27 18:19:50.671724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 127], ["created_at", "2021-10-27 18:19:50.673155"], ["updated_at", "2021-10-27 18:19:50.673155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 127], ["created_at", "2021-10-27 18:19:50.674555"], ["updated_at", "2021-10-27 18:19:50.674555"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 129], ["created_at", "2021-10-27 18:19:50.675727"], ["updated_at", "2021-10-27 18:19:50.675727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 127], ["created_at", "2021-10-27 18:19:50.677126"], ["updated_at", "2021-10-27 18:19:50.677126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 127], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.679690"], ["updated_at", "2021-10-27 18:19:50.679690"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.680824"], ["updated_at", "2021-10-27 18:19:50.680824"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.681923"], ["updated_at", "2021-10-27 18:19:50.681923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 130], ["created_at", "2021-10-27 18:19:50.683050"], ["updated_at", "2021-10-27 18:19:50.683050"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 130], ["created_at", "2021-10-27 18:19:50.684184"], ["updated_at", "2021-10-27 18:19:50.684184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 132], ["created_at", "2021-10-27 18:19:50.685649"], ["updated_at", "2021-10-27 18:19:50.685649"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 130], ["created_at", "2021-10-27 18:19:50.686767"], ["updated_at", "2021-10-27 18:19:50.686767"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 130]]
 (0.1ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.176091"], ["updated_at", "2021-10-27 18:20:08.176091"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.179155"], ["updated_at", "2021-10-27 18:20:08.179155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.180936"], ["updated_at", "2021-10-27 18:20:08.180936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 133], ["created_at", "2021-10-27 18:20:08.222218"], ["updated_at", "2021-10-27 18:20:08.222218"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 133], ["created_at", "2021-10-27 18:20:08.225001"], ["updated_at", "2021-10-27 18:20:08.225001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 135], ["created_at", "2021-10-27 18:20:08.226301"], ["updated_at", "2021-10-27 18:20:08.226301"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 133], ["created_at", "2021-10-27 18:20:08.227398"], ["updated_at", "2021-10-27 18:20:08.227398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.267133"], ["updated_at", "2021-10-27 18:20:08.267133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.268414"], ["updated_at", "2021-10-27 18:20:08.268414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.269248"], ["updated_at", "2021-10-27 18:20:08.269248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 136], ["created_at", "2021-10-27 18:20:08.270331"], ["updated_at", "2021-10-27 18:20:08.270331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 136], ["created_at", "2021-10-27 18:20:08.271609"], ["updated_at", "2021-10-27 18:20:08.271609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 138], ["created_at", "2021-10-27 18:20:08.273013"], ["updated_at", "2021-10-27 18:20:08.273013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 136], ["created_at", "2021-10-27 18:20:08.273939"], ["updated_at", "2021-10-27 18:20:08.273939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.280195"], ["updated_at", "2021-10-27 18:20:08.280195"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.281058"], ["updated_at", "2021-10-27 18:20:08.281058"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.281805"], ["updated_at", "2021-10-27 18:20:08.281805"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 139], ["created_at", "2021-10-27 18:20:08.282782"], ["updated_at", "2021-10-27 18:20:08.282782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 139], ["created_at", "2021-10-27 18:20:08.284026"], ["updated_at", "2021-10-27 18:20:08.284026"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 141], ["created_at", "2021-10-27 18:20:08.285148"], ["updated_at", "2021-10-27 18:20:08.285148"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 139], ["created_at", "2021-10-27 18:20:08.286059"], ["updated_at", "2021-10-27 18:20:08.286059"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.290615"], ["updated_at", "2021-10-27 18:20:08.290615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.291642"], ["updated_at", "2021-10-27 18:20:08.291642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.292623"], ["updated_at", "2021-10-27 18:20:08.292623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 142], ["created_at", "2021-10-27 18:20:08.293697"], ["updated_at", "2021-10-27 18:20:08.293697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 142], ["created_at", "2021-10-27 18:20:08.294771"], ["updated_at", "2021-10-27 18:20:08.294771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 144], ["created_at", "2021-10-27 18:20:08.296101"], ["updated_at", "2021-10-27 18:20:08.296101"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 142], ["created_at", "2021-10-27 18:20:08.297108"], ["updated_at", "2021-10-27 18:20:08.297108"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.301471"], ["updated_at", "2021-10-27 18:20:08.301471"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.302523"], ["updated_at", "2021-10-27 18:20:08.302523"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.303323"], ["updated_at", "2021-10-27 18:20:08.303323"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 145], ["created_at", "2021-10-27 18:20:08.304449"], ["updated_at", "2021-10-27 18:20:08.304449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 145], ["created_at", "2021-10-27 18:20:08.305468"], ["updated_at", "2021-10-27 18:20:08.305468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 147], ["created_at", "2021-10-27 18:20:08.306544"], ["updated_at", "2021-10-27 18:20:08.306544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 145], ["created_at", "2021-10-27 18:20:08.307773"], ["updated_at", "2021-10-27 18:20:08.307773"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.310570"], ["updated_at", "2021-10-27 18:20:08.310570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.311686"], ["updated_at", "2021-10-27 18:20:08.311686"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.312785"], ["updated_at", "2021-10-27 18:20:08.312785"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 148], ["created_at", "2021-10-27 18:20:08.313975"], ["updated_at", "2021-10-27 18:20:08.313975"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 148], ["created_at", "2021-10-27 18:20:08.315013"], ["updated_at", "2021-10-27 18:20:08.315013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 150], ["created_at", "2021-10-27 18:20:08.316072"], ["updated_at", "2021-10-27 18:20:08.316072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 148], ["created_at", "2021-10-27 18:20:08.317055"], ["updated_at", "2021-10-27 18:20:08.317055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.7ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.320613"], ["updated_at", "2021-10-27 18:20:08.320613"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.321460"], ["updated_at", "2021-10-27 18:20:08.321460"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.322307"], ["updated_at", "2021-10-27 18:20:08.322307"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 151], ["created_at", "2021-10-27 18:20:08.323643"], ["updated_at", "2021-10-27 18:20:08.323643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 151], ["created_at", "2021-10-27 18:20:08.324688"], ["updated_at", "2021-10-27 18:20:08.324688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 153], ["created_at", "2021-10-27 18:20:08.326028"], ["updated_at", "2021-10-27 18:20:08.326028"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 151], ["created_at", "2021-10-27 18:20:08.327398"], ["updated_at", "2021-10-27 18:20:08.327398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.9ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.330207"], ["updated_at", "2021-10-27 18:20:08.330207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.331310"], ["updated_at", "2021-10-27 18:20:08.331310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.332273"], ["updated_at", "2021-10-27 18:20:08.332273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 154], ["created_at", "2021-10-27 18:20:08.333358"], ["updated_at", "2021-10-27 18:20:08.333358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 154], ["created_at", "2021-10-27 18:20:08.334685"], ["updated_at", "2021-10-27 18:20:08.334685"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 156], ["created_at", "2021-10-27 18:20:08.336137"], ["updated_at", "2021-10-27 18:20:08.336137"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 154], ["created_at", "2021-10-27 18:20:08.337257"], ["updated_at", "2021-10-27 18:20:08.337257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.7ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.343053"], ["updated_at", "2021-10-27 18:20:08.343053"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.344113"], ["updated_at", "2021-10-27 18:20:08.344113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.344934"], ["updated_at", "2021-10-27 18:20:08.344934"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 157], ["created_at", "2021-10-27 18:20:08.346021"], ["updated_at", "2021-10-27 18:20:08.346021"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 157], ["created_at", "2021-10-27 18:20:08.347415"], ["updated_at", "2021-10-27 18:20:08.347415"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 159], ["created_at", "2021-10-27 18:20:08.348813"], ["updated_at", "2021-10-27 18:20:08.348813"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 157], ["created_at", "2021-10-27 18:20:08.349962"], ["updated_at", "2021-10-27 18:20:08.349962"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.352126"], ["updated_at", "2021-10-27 18:20:08.352126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.353052"], ["updated_at", "2021-10-27 18:20:08.353052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.353904"], ["updated_at", "2021-10-27 18:20:08.353904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 160], ["created_at", "2021-10-27 18:20:08.355204"], ["updated_at", "2021-10-27 18:20:08.355204"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 160], ["created_at", "2021-10-27 18:20:08.356323"], ["updated_at", "2021-10-27 18:20:08.356323"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 162], ["created_at", "2021-10-27 18:20:08.357465"], ["updated_at", "2021-10-27 18:20:08.357465"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 160], ["created_at", "2021-10-27 18:20:08.358839"], ["updated_at", "2021-10-27 18:20:08.358839"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:20:08.377081"], ["updated_at", "2021-10-27 18:20:08.377081"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:20:08.378866"], ["updated_at", "2021-10-27 18:20:08.378866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.6ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 154], ["LIMIT", 1]]
ApplicationPet Create (1.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 154], ["application_id", 33], ["created_at", "2021-10-27 18:20:08.396278"], ["updated_at", "2021-10-27 18:20:08.396278"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 155], ["LIMIT", 1]]
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 155], ["application_id", 34], ["created_at", "2021-10-27 18:20:08.399359"], ["updated_at", "2021-10-27 18:20:08.399359"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (6.9ms)  SELECT DISTINCT shelters.* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.419308"], ["updated_at", "2021-10-27 18:20:08.419308"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.420346"], ["updated_at", "2021-10-27 18:20:08.420346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.421319"], ["updated_at", "2021-10-27 18:20:08.421319"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 163], ["created_at", "2021-10-27 18:20:08.422603"], ["updated_at", "2021-10-27 18:20:08.422603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 163], ["created_at", "2021-10-27 18:20:08.423749"], ["updated_at", "2021-10-27 18:20:08.423749"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 165], ["created_at", "2021-10-27 18:20:08.424918"], ["updated_at", "2021-10-27 18:20:08.424918"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 163], ["created_at", "2021-10-27 18:20:08.426138"], ["updated_at", "2021-10-27 18:20:08.426138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 163], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.428495"], ["updated_at", "2021-10-27 18:20:08.428495"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.429570"], ["updated_at", "2021-10-27 18:20:08.429570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.430624"], ["updated_at", "2021-10-27 18:20:08.430624"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 166], ["created_at", "2021-10-27 18:20:08.431772"], ["updated_at", "2021-10-27 18:20:08.431772"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 166], ["created_at", "2021-10-27 18:20:08.432966"], ["updated_at", "2021-10-27 18:20:08.432966"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 168], ["created_at", "2021-10-27 18:20:08.434273"], ["updated_at", "2021-10-27 18:20:08.434273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 166], ["created_at", "2021-10-27 18:20:08.435374"], ["updated_at", "2021-10-27 18:20:08.435374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 166], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.438180"], ["updated_at", "2021-10-27 18:20:08.438180"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.439102"], ["updated_at", "2021-10-27 18:20:08.439102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.439966"], ["updated_at", "2021-10-27 18:20:08.439966"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 169], ["created_at", "2021-10-27 18:20:08.441320"], ["updated_at", "2021-10-27 18:20:08.441320"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 169], ["created_at", "2021-10-27 18:20:08.442663"], ["updated_at", "2021-10-27 18:20:08.442663"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 171], ["created_at", "2021-10-27 18:20:08.443841"], ["updated_at", "2021-10-27 18:20:08.443841"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 169], ["created_at", "2021-10-27 18:20:08.445211"], ["updated_at", "2021-10-27 18:20:08.445211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 169], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.447947"], ["updated_at", "2021-10-27 18:20:08.447947"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.449376"], ["updated_at", "2021-10-27 18:20:08.449376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.450467"], ["updated_at", "2021-10-27 18:20:08.450467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 172], ["created_at", "2021-10-27 18:20:08.451644"], ["updated_at", "2021-10-27 18:20:08.451644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 172], ["created_at", "2021-10-27 18:20:08.452986"], ["updated_at", "2021-10-27 18:20:08.452986"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 174], ["created_at", "2021-10-27 18:20:08.454470"], ["updated_at", "2021-10-27 18:20:08.454470"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 172], ["created_at", "2021-10-27 18:20:08.455571"], ["updated_at", "2021-10-27 18:20:08.455571"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 172]]
 (0.1ms)  ROLLBACK
 (1.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.338297"], ["updated_at", "2021-10-27 20:25:45.338297"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.340537"], ["updated_at", "2021-10-27 20:25:45.340537"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.341489"], ["updated_at", "2021-10-27 20:25:45.341489"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (5.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 175], ["created_at", "2021-10-27 20:25:45.373610"], ["updated_at", "2021-10-27 20:25:45.373610"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 175], ["created_at", "2021-10-27 20:25:45.379932"], ["updated_at", "2021-10-27 20:25:45.379932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 177], ["created_at", "2021-10-27 20:25:45.381443"], ["updated_at", "2021-10-27 20:25:45.381443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 175], ["created_at", "2021-10-27 20:25:45.382732"], ["updated_at", "2021-10-27 20:25:45.382732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.424526"], ["updated_at", "2021-10-27 20:25:45.424526"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.425542"], ["updated_at", "2021-10-27 20:25:45.425542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.426370"], ["updated_at", "2021-10-27 20:25:45.426370"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 178], ["created_at", "2021-10-27 20:25:45.427644"], ["updated_at", "2021-10-27 20:25:45.427644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 178], ["created_at", "2021-10-27 20:25:45.428812"], ["updated_at", "2021-10-27 20:25:45.428812"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 180], ["created_at", "2021-10-27 20:25:45.429893"], ["updated_at", "2021-10-27 20:25:45.429893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 178], ["created_at", "2021-10-27 20:25:45.431325"], ["updated_at", "2021-10-27 20:25:45.431325"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.437897"], ["updated_at", "2021-10-27 20:25:45.437897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.439021"], ["updated_at", "2021-10-27 20:25:45.439021"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.439984"], ["updated_at", "2021-10-27 20:25:45.439984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 181], ["created_at", "2021-10-27 20:25:45.440966"], ["updated_at", "2021-10-27 20:25:45.440966"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 181], ["created_at", "2021-10-27 20:25:45.441957"], ["updated_at", "2021-10-27 20:25:45.441957"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 183], ["created_at", "2021-10-27 20:25:45.443273"], ["updated_at", "2021-10-27 20:25:45.443273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 181], ["created_at", "2021-10-27 20:25:45.444559"], ["updated_at", "2021-10-27 20:25:45.444559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.449110"], ["updated_at", "2021-10-27 20:25:45.449110"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.449993"], ["updated_at", "2021-10-27 20:25:45.449993"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.451045"], ["updated_at", "2021-10-27 20:25:45.451045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 184], ["created_at", "2021-10-27 20:25:45.452223"], ["updated_at", "2021-10-27 20:25:45.452223"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 184], ["created_at", "2021-10-27 20:25:45.453245"], ["updated_at", "2021-10-27 20:25:45.453245"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 186], ["created_at", "2021-10-27 20:25:45.454388"], ["updated_at", "2021-10-27 20:25:45.454388"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 184], ["created_at", "2021-10-27 20:25:45.455730"], ["updated_at", "2021-10-27 20:25:45.455730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.459413"], ["updated_at", "2021-10-27 20:25:45.459413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.460245"], ["updated_at", "2021-10-27 20:25:45.460245"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.461054"], ["updated_at", "2021-10-27 20:25:45.461054"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 187], ["created_at", "2021-10-27 20:25:45.462541"], ["updated_at", "2021-10-27 20:25:45.462541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 187], ["created_at", "2021-10-27 20:25:45.464204"], ["updated_at", "2021-10-27 20:25:45.464204"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 189], ["created_at", "2021-10-27 20:25:45.465322"], ["updated_at", "2021-10-27 20:25:45.465322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 187], ["created_at", "2021-10-27 20:25:45.466625"], ["updated_at", "2021-10-27 20:25:45.466625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.469950"], ["updated_at", "2021-10-27 20:25:45.469950"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.471121"], ["updated_at", "2021-10-27 20:25:45.471121"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.471998"], ["updated_at", "2021-10-27 20:25:45.471998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 190], ["created_at", "2021-10-27 20:25:45.473043"], ["updated_at", "2021-10-27 20:25:45.473043"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 190], ["created_at", "2021-10-27 20:25:45.474242"], ["updated_at", "2021-10-27 20:25:45.474242"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 192], ["created_at", "2021-10-27 20:25:45.475575"], ["updated_at", "2021-10-27 20:25:45.475575"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 190], ["created_at", "2021-10-27 20:25:45.476554"], ["updated_at", "2021-10-27 20:25:45.476554"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.479959"], ["updated_at", "2021-10-27 20:25:45.479959"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.480813"], ["updated_at", "2021-10-27 20:25:45.480813"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.481664"], ["updated_at", "2021-10-27 20:25:45.481664"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 193], ["created_at", "2021-10-27 20:25:45.482930"], ["updated_at", "2021-10-27 20:25:45.482930"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 193], ["created_at", "2021-10-27 20:25:45.484297"], ["updated_at", "2021-10-27 20:25:45.484297"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 195], ["created_at", "2021-10-27 20:25:45.485419"], ["updated_at", "2021-10-27 20:25:45.485419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 193], ["created_at", "2021-10-27 20:25:45.486825"], ["updated_at", "2021-10-27 20:25:45.486825"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.9ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.489683"], ["updated_at", "2021-10-27 20:25:45.489683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.490767"], ["updated_at", "2021-10-27 20:25:45.490767"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.491702"], ["updated_at", "2021-10-27 20:25:45.491702"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 196], ["created_at", "2021-10-27 20:25:45.492738"], ["updated_at", "2021-10-27 20:25:45.492738"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 196], ["created_at", "2021-10-27 20:25:45.493874"], ["updated_at", "2021-10-27 20:25:45.493874"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 198], ["created_at", "2021-10-27 20:25:45.495429"], ["updated_at", "2021-10-27 20:25:45.495429"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 196], ["created_at", "2021-10-27 20:25:45.496515"], ["updated_at", "2021-10-27 20:25:45.496515"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.6ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.502139"], ["updated_at", "2021-10-27 20:25:45.502139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.503287"], ["updated_at", "2021-10-27 20:25:45.503287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.504147"], ["updated_at", "2021-10-27 20:25:45.504147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 199], ["created_at", "2021-10-27 20:25:45.505274"], ["updated_at", "2021-10-27 20:25:45.505274"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 199], ["created_at", "2021-10-27 20:25:45.506686"], ["updated_at", "2021-10-27 20:25:45.506686"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 201], ["created_at", "2021-10-27 20:25:45.508322"], ["updated_at", "2021-10-27 20:25:45.508322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 199], ["created_at", "2021-10-27 20:25:45.509563"], ["updated_at", "2021-10-27 20:25:45.509563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.511712"], ["updated_at", "2021-10-27 20:25:45.511712"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.512605"], ["updated_at", "2021-10-27 20:25:45.512605"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.513544"], ["updated_at", "2021-10-27 20:25:45.513544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 202], ["created_at", "2021-10-27 20:25:45.514832"], ["updated_at", "2021-10-27 20:25:45.514832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 202], ["created_at", "2021-10-27 20:25:45.515919"], ["updated_at", "2021-10-27 20:25:45.515919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 204], ["created_at", "2021-10-27 20:25:45.517061"], ["updated_at", "2021-10-27 20:25:45.517061"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 202], ["created_at", "2021-10-27 20:25:45.518413"], ["updated_at", "2021-10-27 20:25:45.518413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 20:25:45.538472"], ["updated_at", "2021-10-27 20:25:45.538472"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 20:25:45.540315"], ["updated_at", "2021-10-27 20:25:45.540315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.7ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 210], ["LIMIT", 1]]
ApplicationPet Create (1.0ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 210], ["application_id", 35], ["created_at", "2021-10-27 20:25:45.558970"], ["updated_at", "2021-10-27 20:25:45.558970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 211], ["LIMIT", 1]]
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 211], ["application_id", 36], ["created_at", "2021-10-27 20:25:45.561762"], ["updated_at", "2021-10-27 20:25:45.561762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (6.2ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."status" = $1  [["status", "Pending"]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.571927"], ["updated_at", "2021-10-27 20:25:45.571927"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.573072"], ["updated_at", "2021-10-27 20:25:45.573072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.574073"], ["updated_at", "2021-10-27 20:25:45.574073"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 205], ["created_at", "2021-10-27 20:25:45.575314"], ["updated_at", "2021-10-27 20:25:45.575314"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 205], ["created_at", "2021-10-27 20:25:45.576494"], ["updated_at", "2021-10-27 20:25:45.576494"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 207], ["created_at", "2021-10-27 20:25:45.577984"], ["updated_at", "2021-10-27 20:25:45.577984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 205], ["created_at", "2021-10-27 20:25:45.579102"], ["updated_at", "2021-10-27 20:25:45.579102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 205], ["adoptable", true]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.581942"], ["updated_at", "2021-10-27 20:25:45.581942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.582949"], ["updated_at", "2021-10-27 20:25:45.582949"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.583864"], ["updated_at", "2021-10-27 20:25:45.583864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 208], ["created_at", "2021-10-27 20:25:45.585223"], ["updated_at", "2021-10-27 20:25:45.585223"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 208], ["created_at", "2021-10-27 20:25:45.586653"], ["updated_at", "2021-10-27 20:25:45.586653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 210], ["created_at", "2021-10-27 20:25:45.587906"], ["updated_at", "2021-10-27 20:25:45.587906"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 208], ["created_at", "2021-10-27 20:25:45.589349"], ["updated_at", "2021-10-27 20:25:45.589349"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 208], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.592136"], ["updated_at", "2021-10-27 20:25:45.592136"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.593356"], ["updated_at", "2021-10-27 20:25:45.593356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.594451"], ["updated_at", "2021-10-27 20:25:45.594451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 211], ["created_at", "2021-10-27 20:25:45.595632"], ["updated_at", "2021-10-27 20:25:45.595632"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 211], ["created_at", "2021-10-27 20:25:45.596895"], ["updated_at", "2021-10-27 20:25:45.596895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 213], ["created_at", "2021-10-27 20:25:45.598281"], ["updated_at", "2021-10-27 20:25:45.598281"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 211], ["created_at", "2021-10-27 20:25:45.599406"], ["updated_at", "2021-10-27 20:25:45.599406"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 211], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.602315"], ["updated_at", "2021-10-27 20:25:45.602315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.603365"], ["updated_at", "2021-10-27 20:25:45.603365"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.604296"], ["updated_at", "2021-10-27 20:25:45.604296"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 214], ["created_at", "2021-10-27 20:25:45.605694"], ["updated_at", "2021-10-27 20:25:45.605694"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 214], ["created_at", "2021-10-27 20:25:45.606873"], ["updated_at", "2021-10-27 20:25:45.606873"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 216], ["created_at", "2021-10-27 20:25:45.608052"], ["updated_at", "2021-10-27 20:25:45.608052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 214], ["created_at", "2021-10-27 20:25:45.609434"], ["updated_at", "2021-10-27 20:25:45.609434"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 214]]
 (0.1ms)  ROLLBACK
 (1.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.308248"], ["updated_at", "2021-10-27 20:27:45.308248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.311102"], ["updated_at", "2021-10-27 20:27:45.311102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.312414"], ["updated_at", "2021-10-27 20:27:45.312414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 217], ["created_at", "2021-10-27 20:27:45.352611"], ["updated_at", "2021-10-27 20:27:45.352611"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 217], ["created_at", "2021-10-27 20:27:45.359945"], ["updated_at", "2021-10-27 20:27:45.359945"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 219], ["created_at", "2021-10-27 20:27:45.361530"], ["updated_at", "2021-10-27 20:27:45.361530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 217], ["created_at", "2021-10-27 20:27:45.362691"], ["updated_at", "2021-10-27 20:27:45.362691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.402358"], ["updated_at", "2021-10-27 20:27:45.402358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.403683"], ["updated_at", "2021-10-27 20:27:45.403683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.404637"], ["updated_at", "2021-10-27 20:27:45.404637"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 220], ["created_at", "2021-10-27 20:27:45.405726"], ["updated_at", "2021-10-27 20:27:45.405726"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 220], ["created_at", "2021-10-27 20:27:45.407110"], ["updated_at", "2021-10-27 20:27:45.407110"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 222], ["created_at", "2021-10-27 20:27:45.408641"], ["updated_at", "2021-10-27 20:27:45.408641"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 220], ["created_at", "2021-10-27 20:27:45.409608"], ["updated_at", "2021-10-27 20:27:45.409608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.415979"], ["updated_at", "2021-10-27 20:27:45.415979"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.416830"], ["updated_at", "2021-10-27 20:27:45.416830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.417647"], ["updated_at", "2021-10-27 20:27:45.417647"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 223], ["created_at", "2021-10-27 20:27:45.418845"], ["updated_at", "2021-10-27 20:27:45.418845"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 223], ["created_at", "2021-10-27 20:27:45.420643"], ["updated_at", "2021-10-27 20:27:45.420643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 225], ["created_at", "2021-10-27 20:27:45.421912"], ["updated_at", "2021-10-27 20:27:45.421912"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 223], ["created_at", "2021-10-27 20:27:45.422941"], ["updated_at", "2021-10-27 20:27:45.422941"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.427747"], ["updated_at", "2021-10-27 20:27:45.427747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.428630"], ["updated_at", "2021-10-27 20:27:45.428630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.429428"], ["updated_at", "2021-10-27 20:27:45.429428"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 226], ["created_at", "2021-10-27 20:27:45.430494"], ["updated_at", "2021-10-27 20:27:45.430494"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 226], ["created_at", "2021-10-27 20:27:45.431771"], ["updated_at", "2021-10-27 20:27:45.431771"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 228], ["created_at", "2021-10-27 20:27:45.432870"], ["updated_at", "2021-10-27 20:27:45.432870"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 226], ["created_at", "2021-10-27 20:27:45.433889"], ["updated_at", "2021-10-27 20:27:45.433889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.437987"], ["updated_at", "2021-10-27 20:27:45.437987"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.438936"], ["updated_at", "2021-10-27 20:27:45.438936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.439706"], ["updated_at", "2021-10-27 20:27:45.439706"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 229], ["created_at", "2021-10-27 20:27:45.440806"], ["updated_at", "2021-10-27 20:27:45.440806"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 229], ["created_at", "2021-10-27 20:27:45.441844"], ["updated_at", "2021-10-27 20:27:45.441844"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 231], ["created_at", "2021-10-27 20:27:45.443193"], ["updated_at", "2021-10-27 20:27:45.443193"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 229], ["created_at", "2021-10-27 20:27:45.444338"], ["updated_at", "2021-10-27 20:27:45.444338"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.446999"], ["updated_at", "2021-10-27 20:27:45.446999"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.447995"], ["updated_at", "2021-10-27 20:27:45.447995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.448785"], ["updated_at", "2021-10-27 20:27:45.448785"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 232], ["created_at", "2021-10-27 20:27:45.449909"], ["updated_at", "2021-10-27 20:27:45.449909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 232], ["created_at", "2021-10-27 20:27:45.451390"], ["updated_at", "2021-10-27 20:27:45.451390"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 234], ["created_at", "2021-10-27 20:27:45.452596"], ["updated_at", "2021-10-27 20:27:45.452596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 232], ["created_at", "2021-10-27 20:27:45.453585"], ["updated_at", "2021-10-27 20:27:45.453585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.457231"], ["updated_at", "2021-10-27 20:27:45.457231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.458256"], ["updated_at", "2021-10-27 20:27:45.458256"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.459255"], ["updated_at", "2021-10-27 20:27:45.459255"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 235], ["created_at", "2021-10-27 20:27:45.460353"], ["updated_at", "2021-10-27 20:27:45.460353"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 235], ["created_at", "2021-10-27 20:27:45.461414"], ["updated_at", "2021-10-27 20:27:45.461414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 237], ["created_at", "2021-10-27 20:27:45.462742"], ["updated_at", "2021-10-27 20:27:45.462742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 235], ["created_at", "2021-10-27 20:27:45.464049"], ["updated_at", "2021-10-27 20:27:45.464049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.2ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.467174"], ["updated_at", "2021-10-27 20:27:45.467174"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.468183"], ["updated_at", "2021-10-27 20:27:45.468183"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.469000"], ["updated_at", "2021-10-27 20:27:45.469000"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 238], ["created_at", "2021-10-27 20:27:45.470027"], ["updated_at", "2021-10-27 20:27:45.470027"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 238], ["created_at", "2021-10-27 20:27:45.470996"], ["updated_at", "2021-10-27 20:27:45.470996"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 240], ["created_at", "2021-10-27 20:27:45.472076"], ["updated_at", "2021-10-27 20:27:45.472076"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 238], ["created_at", "2021-10-27 20:27:45.473068"], ["updated_at", "2021-10-27 20:27:45.473068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (2.3ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.479551"], ["updated_at", "2021-10-27 20:27:45.479551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.480531"], ["updated_at", "2021-10-27 20:27:45.480531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.481338"], ["updated_at", "2021-10-27 20:27:45.481338"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 241], ["created_at", "2021-10-27 20:27:45.482652"], ["updated_at", "2021-10-27 20:27:45.482652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 241], ["created_at", "2021-10-27 20:27:45.483929"], ["updated_at", "2021-10-27 20:27:45.483929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 243], ["created_at", "2021-10-27 20:27:45.485005"], ["updated_at", "2021-10-27 20:27:45.485005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 241], ["created_at", "2021-10-27 20:27:45.486285"], ["updated_at", "2021-10-27 20:27:45.486285"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.488534"], ["updated_at", "2021-10-27 20:27:45.488534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.489398"], ["updated_at", "2021-10-27 20:27:45.489398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.490444"], ["updated_at", "2021-10-27 20:27:45.490444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 244], ["created_at", "2021-10-27 20:27:45.491723"], ["updated_at", "2021-10-27 20:27:45.491723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 244], ["created_at", "2021-10-27 20:27:45.492793"], ["updated_at", "2021-10-27 20:27:45.492793"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 246], ["created_at", "2021-10-27 20:27:45.494122"], ["updated_at", "2021-10-27 20:27:45.494122"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 244], ["created_at", "2021-10-27 20:27:45.495546"], ["updated_at", "2021-10-27 20:27:45.495546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (1.1ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 20:27:45.513653"], ["updated_at", "2021-10-27 20:27:45.513653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 20:27:45.515885"], ["updated_at", "2021-10-27 20:27:45.515885"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 266], ["LIMIT", 1]]
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 266], ["application_id", 37], ["created_at", "2021-10-27 20:27:45.535025"], ["updated_at", "2021-10-27 20:27:45.535025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 267], ["LIMIT", 1]]
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 267], ["application_id", 38], ["created_at", "2021-10-27 20:27:45.537827"], ["updated_at", "2021-10-27 20:27:45.537827"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1  [["application_status", "Pending"]]
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)  [["id", 244], ["id", 246]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.552761"], ["updated_at", "2021-10-27 20:27:45.552761"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.553950"], ["updated_at", "2021-10-27 20:27:45.553950"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.554932"], ["updated_at", "2021-10-27 20:27:45.554932"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 247], ["created_at", "2021-10-27 20:27:45.556109"], ["updated_at", "2021-10-27 20:27:45.556109"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 247], ["created_at", "2021-10-27 20:27:45.557275"], ["updated_at", "2021-10-27 20:27:45.557275"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 249], ["created_at", "2021-10-27 20:27:45.558540"], ["updated_at", "2021-10-27 20:27:45.558540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 247], ["created_at", "2021-10-27 20:27:45.559558"], ["updated_at", "2021-10-27 20:27:45.559558"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 247], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.562099"], ["updated_at", "2021-10-27 20:27:45.562099"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.563175"], ["updated_at", "2021-10-27 20:27:45.563175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.564045"], ["updated_at", "2021-10-27 20:27:45.564045"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 250], ["created_at", "2021-10-27 20:27:45.565157"], ["updated_at", "2021-10-27 20:27:45.565157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 250], ["created_at", "2021-10-27 20:27:45.566375"], ["updated_at", "2021-10-27 20:27:45.566375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 252], ["created_at", "2021-10-27 20:27:45.567496"], ["updated_at", "2021-10-27 20:27:45.567496"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 250], ["created_at", "2021-10-27 20:27:45.568608"], ["updated_at", "2021-10-27 20:27:45.568608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 250], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.571263"], ["updated_at", "2021-10-27 20:27:45.571263"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.572181"], ["updated_at", "2021-10-27 20:27:45.572181"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.573096"], ["updated_at", "2021-10-27 20:27:45.573096"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 253], ["created_at", "2021-10-27 20:27:45.574303"], ["updated_at", "2021-10-27 20:27:45.574303"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 253], ["created_at", "2021-10-27 20:27:45.575381"], ["updated_at", "2021-10-27 20:27:45.575381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 255], ["created_at", "2021-10-27 20:27:45.576508"], ["updated_at", "2021-10-27 20:27:45.576508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 253], ["created_at", "2021-10-27 20:27:45.577703"], ["updated_at", "2021-10-27 20:27:45.577703"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 253], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.580061"], ["updated_at", "2021-10-27 20:27:45.580061"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.581174"], ["updated_at", "2021-10-27 20:27:45.581174"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.582421"], ["updated_at", "2021-10-27 20:27:45.582421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 256], ["created_at", "2021-10-27 20:27:45.583546"], ["updated_at", "2021-10-27 20:27:45.583546"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 256], ["created_at", "2021-10-27 20:27:45.584739"], ["updated_at", "2021-10-27 20:27:45.584739"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 258], ["created_at", "2021-10-27 20:27:45.586131"], ["updated_at", "2021-10-27 20:27:45.586131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 256], ["created_at", "2021-10-27 20:27:45.587235"], ["updated_at", "2021-10-27 20:27:45.587235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 256]]
 (0.2ms)  ROLLBACK
 (1.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.9ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.608565"], ["updated_at", "2021-10-27 20:28:53.608565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.611613"], ["updated_at", "2021-10-27 20:28:53.611613"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.613462"], ["updated_at", "2021-10-27 20:28:53.613462"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 259], ["created_at", "2021-10-27 20:28:53.650975"], ["updated_at", "2021-10-27 20:28:53.650975"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 259], ["created_at", "2021-10-27 20:28:53.653718"], ["updated_at", "2021-10-27 20:28:53.653718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 261], ["created_at", "2021-10-27 20:28:53.654985"], ["updated_at", "2021-10-27 20:28:53.654985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 259], ["created_at", "2021-10-27 20:28:53.656091"], ["updated_at", "2021-10-27 20:28:53.656091"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.694049"], ["updated_at", "2021-10-27 20:28:53.694049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.695079"], ["updated_at", "2021-10-27 20:28:53.695079"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.695943"], ["updated_at", "2021-10-27 20:28:53.695943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 262], ["created_at", "2021-10-27 20:28:53.697293"], ["updated_at", "2021-10-27 20:28:53.697293"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 262], ["created_at", "2021-10-27 20:28:53.698424"], ["updated_at", "2021-10-27 20:28:53.698424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 264], ["created_at", "2021-10-27 20:28:53.699533"], ["updated_at", "2021-10-27 20:28:53.699533"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 262], ["created_at", "2021-10-27 20:28:53.700811"], ["updated_at", "2021-10-27 20:28:53.700811"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.709381"], ["updated_at", "2021-10-27 20:28:53.709381"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.710251"], ["updated_at", "2021-10-27 20:28:53.710251"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.710990"], ["updated_at", "2021-10-27 20:28:53.710990"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 265], ["created_at", "2021-10-27 20:28:53.712111"], ["updated_at", "2021-10-27 20:28:53.712111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 265], ["created_at", "2021-10-27 20:28:53.713403"], ["updated_at", "2021-10-27 20:28:53.713403"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 267], ["created_at", "2021-10-27 20:28:53.714436"], ["updated_at", "2021-10-27 20:28:53.714436"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 265], ["created_at", "2021-10-27 20:28:53.715384"], ["updated_at", "2021-10-27 20:28:53.715384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.720145"], ["updated_at", "2021-10-27 20:28:53.720145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.721254"], ["updated_at", "2021-10-27 20:28:53.721254"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.722099"], ["updated_at", "2021-10-27 20:28:53.722099"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 268], ["created_at", "2021-10-27 20:28:53.723532"], ["updated_at", "2021-10-27 20:28:53.723532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 268], ["created_at", "2021-10-27 20:28:53.724602"], ["updated_at", "2021-10-27 20:28:53.724602"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 270], ["created_at", "2021-10-27 20:28:53.725672"], ["updated_at", "2021-10-27 20:28:53.725672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 268], ["created_at", "2021-10-27 20:28:53.726672"], ["updated_at", "2021-10-27 20:28:53.726672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.730503"], ["updated_at", "2021-10-27 20:28:53.730503"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.731502"], ["updated_at", "2021-10-27 20:28:53.731502"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.732773"], ["updated_at", "2021-10-27 20:28:53.732773"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 271], ["created_at", "2021-10-27 20:28:53.733834"], ["updated_at", "2021-10-27 20:28:53.733834"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 271], ["created_at", "2021-10-27 20:28:53.734866"], ["updated_at", "2021-10-27 20:28:53.734866"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 273], ["created_at", "2021-10-27 20:28:53.736213"], ["updated_at", "2021-10-27 20:28:53.736213"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 271], ["created_at", "2021-10-27 20:28:53.737578"], ["updated_at", "2021-10-27 20:28:53.737578"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.740210"], ["updated_at", "2021-10-27 20:28:53.740210"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.741046"], ["updated_at", "2021-10-27 20:28:53.741046"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.741844"], ["updated_at", "2021-10-27 20:28:53.741844"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 274], ["created_at", "2021-10-27 20:28:53.742892"], ["updated_at", "2021-10-27 20:28:53.742892"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 274], ["created_at", "2021-10-27 20:28:53.744275"], ["updated_at", "2021-10-27 20:28:53.744275"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 276], ["created_at", "2021-10-27 20:28:53.745599"], ["updated_at", "2021-10-27 20:28:53.745599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 274], ["created_at", "2021-10-27 20:28:53.746687"], ["updated_at", "2021-10-27 20:28:53.746687"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.750262"], ["updated_at", "2021-10-27 20:28:53.750262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.751152"], ["updated_at", "2021-10-27 20:28:53.751152"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.752144"], ["updated_at", "2021-10-27 20:28:53.752144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 277], ["created_at", "2021-10-27 20:28:53.753322"], ["updated_at", "2021-10-27 20:28:53.753322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 277], ["created_at", "2021-10-27 20:28:53.754298"], ["updated_at", "2021-10-27 20:28:53.754298"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 279], ["created_at", "2021-10-27 20:28:53.755365"], ["updated_at", "2021-10-27 20:28:53.755365"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 277], ["created_at", "2021-10-27 20:28:53.756621"], ["updated_at", "2021-10-27 20:28:53.756621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.8ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.759135"], ["updated_at", "2021-10-27 20:28:53.759135"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.760171"], ["updated_at", "2021-10-27 20:28:53.760171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.761130"], ["updated_at", "2021-10-27 20:28:53.761130"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 280], ["created_at", "2021-10-27 20:28:53.762187"], ["updated_at", "2021-10-27 20:28:53.762187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 280], ["created_at", "2021-10-27 20:28:53.763276"], ["updated_at", "2021-10-27 20:28:53.763276"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 282], ["created_at", "2021-10-27 20:28:53.764638"], ["updated_at", "2021-10-27 20:28:53.764638"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 280], ["created_at", "2021-10-27 20:28:53.765689"], ["updated_at", "2021-10-27 20:28:53.765689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.7ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.771103"], ["updated_at", "2021-10-27 20:28:53.771103"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.772574"], ["updated_at", "2021-10-27 20:28:53.772574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.773510"], ["updated_at", "2021-10-27 20:28:53.773510"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 283], ["created_at", "2021-10-27 20:28:53.774616"], ["updated_at", "2021-10-27 20:28:53.774616"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 283], ["created_at", "2021-10-27 20:28:53.775996"], ["updated_at", "2021-10-27 20:28:53.775996"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 285], ["created_at", "2021-10-27 20:28:53.777375"], ["updated_at", "2021-10-27 20:28:53.777375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 283], ["created_at", "2021-10-27 20:28:53.778443"], ["updated_at", "2021-10-27 20:28:53.778443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.6ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.781153"], ["updated_at", "2021-10-27 20:28:53.781153"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.782031"], ["updated_at", "2021-10-27 20:28:53.782031"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.782944"], ["updated_at", "2021-10-27 20:28:53.782944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 286], ["created_at", "2021-10-27 20:28:53.784248"], ["updated_at", "2021-10-27 20:28:53.784248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 286], ["created_at", "2021-10-27 20:28:53.785523"], ["updated_at", "2021-10-27 20:28:53.785523"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 288], ["created_at", "2021-10-27 20:28:53.786762"], ["updated_at", "2021-10-27 20:28:53.786762"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 286], ["created_at", "2021-10-27 20:28:53.788029"], ["updated_at", "2021-10-27 20:28:53.788029"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 20:28:53.806773"], ["updated_at", "2021-10-27 20:28:53.806773"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 20:28:53.808529"], ["updated_at", "2021-10-27 20:28:53.808529"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 322], ["LIMIT", 1]]
ApplicationPet Create (1.1ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 322], ["application_id", 39], ["created_at", "2021-10-27 20:28:53.827623"], ["updated_at", "2021-10-27 20:28:53.827623"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 323], ["LIMIT", 1]]
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 323], ["application_id", 40], ["created_at", "2021-10-27 20:28:53.830308"], ["updated_at", "2021-10-27 20:28:53.830308"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.2ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1  [["application_status", "Pending"]]
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)  [["id", 286], ["id", 288]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.836383"], ["updated_at", "2021-10-27 20:28:53.836383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.837363"], ["updated_at", "2021-10-27 20:28:53.837363"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.838280"], ["updated_at", "2021-10-27 20:28:53.838280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 289], ["created_at", "2021-10-27 20:28:53.839651"], ["updated_at", "2021-10-27 20:28:53.839651"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 289], ["created_at", "2021-10-27 20:28:53.840936"], ["updated_at", "2021-10-27 20:28:53.840936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 291], ["created_at", "2021-10-27 20:28:53.842080"], ["updated_at", "2021-10-27 20:28:53.842080"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 289], ["created_at", "2021-10-27 20:28:53.843312"], ["updated_at", "2021-10-27 20:28:53.843312"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 289], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.845909"], ["updated_at", "2021-10-27 20:28:53.845909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.846985"], ["updated_at", "2021-10-27 20:28:53.846985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.847997"], ["updated_at", "2021-10-27 20:28:53.847997"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 292], ["created_at", "2021-10-27 20:28:53.849155"], ["updated_at", "2021-10-27 20:28:53.849155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 292], ["created_at", "2021-10-27 20:28:53.850333"], ["updated_at", "2021-10-27 20:28:53.850333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 294], ["created_at", "2021-10-27 20:28:53.851729"], ["updated_at", "2021-10-27 20:28:53.851729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 292], ["created_at", "2021-10-27 20:28:53.852859"], ["updated_at", "2021-10-27 20:28:53.852859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 292], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.855764"], ["updated_at", "2021-10-27 20:28:53.855764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.856693"], ["updated_at", "2021-10-27 20:28:53.856693"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.857585"], ["updated_at", "2021-10-27 20:28:53.857585"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 295], ["created_at", "2021-10-27 20:28:53.858943"], ["updated_at", "2021-10-27 20:28:53.858943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 295], ["created_at", "2021-10-27 20:28:53.860309"], ["updated_at", "2021-10-27 20:28:53.860309"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 297], ["created_at", "2021-10-27 20:28:53.861486"], ["updated_at", "2021-10-27 20:28:53.861486"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 295], ["created_at", "2021-10-27 20:28:53.862875"], ["updated_at", "2021-10-27 20:28:53.862875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 295], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.865450"], ["updated_at", "2021-10-27 20:28:53.865450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.866602"], ["updated_at", "2021-10-27 20:28:53.866602"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.867713"], ["updated_at", "2021-10-27 20:28:53.867713"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 298], ["created_at", "2021-10-27 20:28:53.868842"], ["updated_at", "2021-10-27 20:28:53.868842"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 298], ["created_at", "2021-10-27 20:28:53.869989"], ["updated_at", "2021-10-27 20:28:53.869989"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 300], ["created_at", "2021-10-27 20:28:53.871563"], ["updated_at", "2021-10-27 20:28:53.871563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 298], ["created_at", "2021-10-27 20:28:53.872870"], ["updated_at", "2021-10-27 20:28:53.872870"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 298]]
 (0.1ms)  ROLLBACK
 (1.8ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 22:08:48.289789"], ["updated_at", "2021-10-27 22:08:48.289789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 301], ["created_at", "2021-10-27 22:08:48.321234"], ["updated_at", "2021-10-27 22:08:48.321234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 301], ["created_at", "2021-10-27 22:08:48.323512"], ["updated_at", "2021-10-27 22:08:48.323512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 301], ["created_at", "2021-10-27 22:08:48.324682"], ["updated_at", "2021-10-27 22:08:48.324682"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 22:08:48.340086"], ["updated_at", "2021-10-27 22:08:48.340086"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 341], ["application_id", 41], ["created_at", "2021-10-27 22:08:48.357040"], ["updated_at", "2021-10-27 22:08:48.357040"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 342], ["application_id", 41], ["created_at", "2021-10-27 22:08:48.358840"], ["updated_at", "2021-10-27 22:08:48.358840"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/41” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"41"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 41)
Rendered applications/show.html.erb within layouts/application (5.3ms)

Completed 200 OK in 105ms (Views: 97.4ms | ActiveRecord: 2.2ms) Started GET “/pets/341” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"341"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 341], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 301], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/41” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"41"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 41)
Rendered applications/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.9ms) Started GET “/pets/342” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"342"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 342], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 301], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.5ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 22:08:48.550044"], ["updated_at", "2021-10-27 22:08:48.550044"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 302], ["created_at", "2021-10-27 22:08:48.551545"], ["updated_at", "2021-10-27 22:08:48.551545"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 302], ["created_at", "2021-10-27 22:08:48.552688"], ["updated_at", "2021-10-27 22:08:48.552688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 302], ["created_at", "2021-10-27 22:08:48.554441"], ["updated_at", "2021-10-27 22:08:48.554441"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 22:08:48.555374"], ["updated_at", "2021-10-27 22:08:48.555374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/42” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"42"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)
Rendered applications/show.html.erb within layouts/application (4.4ms)

Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 1.2ms) Started GET “/applications/42?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"42"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)
Pet Load (2.0ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (4.3ms)

Completed 200 OK in 6ms (Views: 2.0ms | ActiveRecord: 3.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 22:08:48.590354"], ["updated_at", "2021-10-27 22:08:48.590354"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 303], ["created_at", "2021-10-27 22:08:48.592773"], ["updated_at", "2021-10-27 22:08:48.592773"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 22:08:48.594853"], ["updated_at", "2021-10-27 22:08:48.594853"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/43” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"43"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
Rendered applications/show.html.erb within layouts/application (2.4ms)

Completed 200 OK in 5ms (Views: 2.5ms | ActiveRecord: 1.2ms) Started GET “/applications/43?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"43"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.3ms)

Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 1.4ms) Started POST “/application_pets?app_id=43&pet_id=347” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"43", "pet_id"=>"347"}
 (0.4ms)  SAVEPOINT active_record_1
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Pet Load (0.6ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 347], ["LIMIT", 1]]
ApplicationPet Create (1.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 347], ["application_id", 43], ["created_at", "2021-10-27 22:10:12.463163"], ["updated_at", "2021-10-27 22:10:12.463163"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/43 Completed 302 Found in 83842ms (ActiveRecord: 2.8ms) Started GET “/applications/43” for 127.0.0.1 at 2021-10-27 16:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"43"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.2ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)
Rendered applications/show.html.erb within layouts/application (5.6ms)

Completed 200 OK in 11ms (Views: 6.8ms | ActiveRecord: 1.6ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 22:10:12.500075"], ["updated_at", "2021-10-27 22:10:12.500075"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 304], ["created_at", "2021-10-27 22:10:12.502329"], ["updated_at", "2021-10-27 22:10:12.502329"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 304], ["created_at", "2021-10-27 22:10:12.504407"], ["updated_at", "2021-10-27 22:10:12.504407"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 304], ["created_at", "2021-10-27 22:10:12.506129"], ["updated_at", "2021-10-27 22:10:12.506129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 22:10:12.507957"], ["updated_at", "2021-10-27 22:10:12.507957"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/44” for 127.0.0.1 at 2021-10-27 16:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"44"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)
Rendered applications/show.html.erb within layouts/application (2.1ms)

Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 1.2ms) Started GET “/applications/44?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 16:10:12 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"44"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (3.0ms)

Completed 200 OK in 5ms (Views: 2.2ms | ActiveRecord: 1.8ms) Started POST “/application_pets?app_id=44&pet_id=350” for 127.0.0.1 at 2021-10-27 16:10:12 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"44", "pet_id"=>"350"}

Completed 500 Internal Server Error in 3226ms (ActiveRecord: 0.0ms)

 (2.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:05.461383"], ["updated_at", "2021-10-27 23:38:05.461383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:05.464162"], ["updated_at", "2021-10-27 23:38:05.464162"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:05.465307"], ["updated_at", "2021-10-27 23:38:05.465307"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (5.3ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (3.4ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1  [["application_status", "Pending"]]
Rendered admin/shelters/index.html.erb within layouts/application (33.5ms)

Completed 200 OK in 128ms (Views: 99.4ms | ActiveRecord: 24.9ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:05.645347"], ["updated_at", "2021-10-27 23:38:05.645347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:05.646608"], ["updated_at", "2021-10-27 23:38:05.646608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:05.647588"], ["updated_at", "2021-10-27 23:38:05.647588"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 308], ["created_at", "2021-10-27 23:38:05.660830"], ["updated_at", "2021-10-27 23:38:05.660830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 308], ["created_at", "2021-10-27 23:38:05.662512"], ["updated_at", "2021-10-27 23:38:05.662512"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 309], ["created_at", "2021-10-27 23:38:05.664178"], ["updated_at", "2021-10-27 23:38:05.664178"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 310], ["created_at", "2021-10-27 23:38:05.665692"], ["updated_at", "2021-10-27 23:38:05.665692"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (1.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:05.670818"], ["updated_at", "2021-10-27 23:38:05.670818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 23:38:05.672745"], ["updated_at", "2021-10-27 23:38:05.672745"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 351], ["LIMIT", 1]]
ApplicationPet Create (1.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 351], ["application_id", 45], ["created_at", "2021-10-27 23:38:05.689165"], ["updated_at", "2021-10-27 23:38:05.689165"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 354], ["LIMIT", 1]]
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 354], ["application_id", 46], ["created_at", "2021-10-27 23:38:05.692418"], ["updated_at", "2021-10-27 23:38:05.692418"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.6ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (1.4ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1  [["application_status", "Pending"]]
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)  [["id", 308], ["id", 310]]
Rendered admin/shelters/index.html.erb within layouts/application (3.7ms)

Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 2.5ms)

 (0.4ms)  ROLLBACK
 (0.2ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.8ms)

Completed 200 OK in 7ms (Views: 3.8ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (8.5ms)

Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (1.7ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (2.6ms)

Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (1.0ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 8ms (Views: 1.9ms | ActiveRecord: 4.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.8ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 7ms (Views: 1.9ms | ActiveRecord: 3.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:05.791697"], ["updated_at", "2021-10-27 23:38:05.791697"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 311], ["created_at", "2021-10-27 23:38:05.818204"], ["updated_at", "2021-10-27 23:38:05.818204"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 311], ["created_at", "2021-10-27 23:38:05.819563"], ["updated_at", "2021-10-27 23:38:05.819563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 311], ["created_at", "2021-10-27 23:38:05.820700"], ["updated_at", "2021-10-27 23:38:05.820700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:05.821674"], ["updated_at", "2021-10-27 23:38:05.821674"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 355], ["application_id", 47], ["created_at", "2021-10-27 23:38:05.825410"], ["updated_at", "2021-10-27 23:38:05.825410"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 356], ["application_id", 47], ["created_at", "2021-10-27 23:38:05.826921"], ["updated_at", "2021-10-27 23:38:05.826921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/47” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"47"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)
Rendered applications/show.html.erb within layouts/application (2.1ms)

Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 1.4ms) Started GET “/pets/355” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"355"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 355], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 311], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/47” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"47"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.4ms) Started GET “/pets/356” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"356"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 356], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 311], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:05.855822"], ["updated_at", "2021-10-27 23:38:05.855822"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 312], ["created_at", "2021-10-27 23:38:05.857293"], ["updated_at", "2021-10-27 23:38:05.857293"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 312], ["created_at", "2021-10-27 23:38:05.858391"], ["updated_at", "2021-10-27 23:38:05.858391"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 312], ["created_at", "2021-10-27 23:38:05.859450"], ["updated_at", "2021-10-27 23:38:05.859450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:05.860408"], ["updated_at", "2021-10-27 23:38:05.860408"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/48” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"48"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)
Rendered applications/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.8ms) Started GET “/applications/48?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"48"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (3.2ms)

Completed 200 OK in 5ms (Views: 2.4ms | ActiveRecord: 1.7ms)

 (0.2ms)  ROLLBACK
 (0.0ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:05.883875"], ["updated_at", "2021-10-27 23:38:05.883875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 313], ["created_at", "2021-10-27 23:38:05.885227"], ["updated_at", "2021-10-27 23:38:05.885227"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:05.886113"], ["updated_at", "2021-10-27 23:38:05.886113"]]
 (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/49” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"49"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.3ms) Started GET “/applications/49?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"49"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.4ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.7ms) Started POST “/application_pets?app_id=49&pet_id=361” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"49", "pet_id"=>"361"}
 (0.4ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 361], ["LIMIT", 1]]
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 361], ["application_id", 49], ["created_at", "2021-10-27 23:38:19.418474"], ["updated_at", "2021-10-27 23:38:19.418474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/49 Completed 302 Found in 13515ms (ActiveRecord: 1.9ms) Started GET “/applications/49” for 127.0.0.1 at 2021-10-27 17:38:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"49"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)
Rendered applications/show.html.erb within layouts/application (4.8ms)

Completed 200 OK in 8ms (Views: 5.4ms | ActiveRecord: 1.3ms)

 (0.6ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:19.439883"], ["updated_at", "2021-10-27 23:38:19.439883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 314], ["created_at", "2021-10-27 23:38:19.442792"], ["updated_at", "2021-10-27 23:38:19.442792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 314], ["created_at", "2021-10-27 23:38:19.444819"], ["updated_at", "2021-10-27 23:38:19.444819"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 314], ["created_at", "2021-10-27 23:38:19.447570"], ["updated_at", "2021-10-27 23:38:19.447570"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:19.449481"], ["updated_at", "2021-10-27 23:38:19.449481"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/50” for 127.0.0.1 at 2021-10-27 17:38:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"50"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)
Rendered applications/show.html.erb within layouts/application (2.1ms)

Completed 200 OK in 5ms (Views: 2.4ms | ActiveRecord: 1.1ms) Started GET “/applications/50?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:19 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"50"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (3.4ms)

Completed 200 OK in 6ms (Views: 3.1ms | ActiveRecord: 1.7ms) Started POST “/application_pets?app_id=50&pet_id=364” for 127.0.0.1 at 2021-10-27 17:38:19 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"50", "pet_id"=>"364"}

Completed 500 Internal Server Error in 2693ms (ActiveRecord: 0.0ms)

 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.241763"], ["updated_at", "2021-10-27 23:38:29.241763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:29.244139"], ["updated_at", "2021-10-27 23:38:29.244139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:29.245186"], ["updated_at", "2021-10-27 23:38:29.245186"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (1.3ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (3.9ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1  [["application_status", "Pending"]]
Rendered admin/shelters/index.html.erb within layouts/application (34.0ms)

Completed 200 OK in 116ms (Views: 86.1ms | ActiveRecord: 26.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.405609"], ["updated_at", "2021-10-27 23:38:29.405609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:29.406690"], ["updated_at", "2021-10-27 23:38:29.406690"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:29.407505"], ["updated_at", "2021-10-27 23:38:29.407505"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 318], ["created_at", "2021-10-27 23:38:29.420513"], ["updated_at", "2021-10-27 23:38:29.420513"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 318], ["created_at", "2021-10-27 23:38:29.422573"], ["updated_at", "2021-10-27 23:38:29.422573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 319], ["created_at", "2021-10-27 23:38:29.423915"], ["updated_at", "2021-10-27 23:38:29.423915"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 320], ["created_at", "2021-10-27 23:38:29.425207"], ["updated_at", "2021-10-27 23:38:29.425207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.430849"], ["updated_at", "2021-10-27 23:38:29.430849"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 23:38:29.432359"], ["updated_at", "2021-10-27 23:38:29.432359"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 51], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 365], ["LIMIT", 1]]
ApplicationPet Create (1.1ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 365], ["application_id", 51], ["created_at", "2021-10-27 23:38:29.450777"], ["updated_at", "2021-10-27 23:38:29.450777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 52], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 368], ["LIMIT", 1]]
ApplicationPet Create (1.0ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 368], ["application_id", 52], ["created_at", "2021-10-27 23:38:29.453850"], ["updated_at", "2021-10-27 23:38:29.453850"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (1.1ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1  [["application_status", "Pending"]]
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)  [["id", 318], ["id", 320]]
Rendered admin/shelters/index.html.erb within layouts/application (2.9ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.8ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.7ms)

Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (8.6ms)

Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.0ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (1.1ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.1ms)

 (0.7ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (1.0ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (3.6ms)

Completed 200 OK in 14ms (Views: 5.0ms | ActiveRecord: 5.9ms)

 (0.6ms)  ROLLBACK
 (5.9ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.2ms)

Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.6ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (2.0ms)

Completed 200 OK in 10ms (Views: 2.8ms | ActiveRecord: 4.0ms)

 (0.5ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:29.612126"], ["updated_at", "2021-10-27 23:38:29.612126"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 321], ["created_at", "2021-10-27 23:38:29.647911"], ["updated_at", "2021-10-27 23:38:29.647911"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 321], ["created_at", "2021-10-27 23:38:29.650367"], ["updated_at", "2021-10-27 23:38:29.650367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 321], ["created_at", "2021-10-27 23:38:29.651713"], ["updated_at", "2021-10-27 23:38:29.651713"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.652786"], ["updated_at", "2021-10-27 23:38:29.652786"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.1ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 369], ["application_id", 53], ["created_at", "2021-10-27 23:38:29.657189"], ["updated_at", "2021-10-27 23:38:29.657189"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 370], ["application_id", 53], ["created_at", "2021-10-27 23:38:29.659288"], ["updated_at", "2021-10-27 23:38:29.659288"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/53” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"53"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)
Rendered applications/show.html.erb within layouts/application (2.5ms)

Completed 200 OK in 6ms (Views: 2.8ms | ActiveRecord: 1.3ms) Started GET “/pets/369” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"369"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 369], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 321], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.5ms) Started GET “/applications/53” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"53"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 1.2ms) Started GET “/pets/370” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"370"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 370], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 321], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:29.688970"], ["updated_at", "2021-10-27 23:38:29.688970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 322], ["created_at", "2021-10-27 23:38:29.690435"], ["updated_at", "2021-10-27 23:38:29.690435"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 322], ["created_at", "2021-10-27 23:38:29.691620"], ["updated_at", "2021-10-27 23:38:29.691620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 322], ["created_at", "2021-10-27 23:38:29.692734"], ["updated_at", "2021-10-27 23:38:29.692734"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.694138"], ["updated_at", "2021-10-27 23:38:29.694138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/54” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"54"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.3ms) Started GET “/applications/54?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"54"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.9ms)

Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 1.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:29.719541"], ["updated_at", "2021-10-27 23:38:29.719541"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 323], ["created_at", "2021-10-27 23:38:29.720922"], ["updated_at", "2021-10-27 23:38:29.720922"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.721976"], ["updated_at", "2021-10-27 23:38:29.721976"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/55” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"55"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.9ms) Started GET “/applications/55?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"55"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (2.2ms)

Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 1.9ms) Started POST “/application_pets?app_id=55&pet_id=375” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"55", "pet_id"=>"375"}
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 375], ["LIMIT", 1]]
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 375], ["application_id", 55], ["created_at", "2021-10-27 23:38:29.742925"], ["updated_at", "2021-10-27 23:38:29.742925"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/55 Completed 302 Found in 3ms (ActiveRecord: 1.1ms) Started GET “/applications/55” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"55"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)
Rendered applications/show.html.erb within layouts/application (2.5ms)

Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:29.752205"], ["updated_at", "2021-10-27 23:38:29.752205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 324], ["created_at", "2021-10-27 23:38:29.753686"], ["updated_at", "2021-10-27 23:38:29.753686"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 324], ["created_at", "2021-10-27 23:38:29.754754"], ["updated_at", "2021-10-27 23:38:29.754754"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 324], ["created_at", "2021-10-27 23:38:29.755673"], ["updated_at", "2021-10-27 23:38:29.755673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.756586"], ["updated_at", "2021-10-27 23:38:29.756586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/56” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"56"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.9ms) Started GET “/applications/56?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"56"}
Application Load (0.5ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 1.4ms) Started POST “/application_pets?app_id=56&pet_id=378” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"56", "pet_id"=>"378"}
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 378], ["LIMIT", 1]]
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 378], ["application_id", 56], ["created_at", "2021-10-27 23:38:29.771493"], ["updated_at", "2021-10-27 23:38:29.771493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/56 Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/applications/56” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"56"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
Rendered applications/show.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.7ms) Started PATCH “/applications/56” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#update as HTML

Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"56"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.9ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "Pending"], ["updated_at", "2021-10-27 23:38:29.781815"], ["id", 56]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/56 Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET “/applications/56” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"56"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)
Rendered applications/show.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.794730"], ["updated_at", "2021-10-27 23:38:29.794730"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/57” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"57"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.5ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.802814"], ["updated_at", "2021-10-27 23:38:29.802814"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/325/pets/new” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"325"}
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 325], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (2.1ms)

Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.812080"], ["updated_at", "2021-10-27 23:38:29.812080"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/326/pets/new” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"326"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 326], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started POST “/shelters/326/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"326"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 326], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 326], ["created_at", "2021-10-27 23:38:29.822765"], ["updated_at", "2021-10-27 23:38:29.822765"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/326/pets Completed 302 Found in 3ms (ActiveRecord: 1.1ms) Started GET “/shelters/326/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"326"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 326], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 326], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (6.4ms)

Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.836519"], ["updated_at", "2021-10-27 23:38:29.836519"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/327/pets/new” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"327"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 327], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started POST “/shelters/327/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"327"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 327], ["LIMIT", 1]]
 (0.4ms)  ROLLBACK TO SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/327/pets/new Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/shelters/327/pets/new” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"327"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 327], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.853374"], ["updated_at", "2021-10-27 23:38:29.853374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 328], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 328], ["created_at", "2021-10-27 23:38:29.855133"], ["updated_at", "2021-10-27 23:38:29.855133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 328], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 328], ["created_at", "2021-10-27 23:38:29.856476"], ["updated_at", "2021-10-27 23:38:29.856476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 328], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 328], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.868102"], ["updated_at", "2021-10-27 23:38:29.868102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 329], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 329], ["created_at", "2021-10-27 23:38:29.869665"], ["updated_at", "2021-10-27 23:38:29.869665"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 329], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 329], ["created_at", "2021-10-27 23:38:29.871010"], ["updated_at", "2021-10-27 23:38:29.871010"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 329], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 329], ["created_at", "2021-10-27 23:38:29.872516"], ["updated_at", "2021-10-27 23:38:29.872516"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 329], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 329], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.879588"], ["updated_at", "2021-10-27 23:38:29.879588"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 330], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 330], ["created_at", "2021-10-27 23:38:29.881831"], ["updated_at", "2021-10-27 23:38:29.881831"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 330], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 330], ["created_at", "2021-10-27 23:38:29.883363"], ["updated_at", "2021-10-27 23:38:29.883363"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 330], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 330], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.4ms) Started GET “/pets/385/edit” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"385"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 385], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.894987"], ["updated_at", "2021-10-27 23:38:29.894987"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 331], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 331], ["created_at", "2021-10-27 23:38:29.896643"], ["updated_at", "2021-10-27 23:38:29.896643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 331], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 331], ["created_at", "2021-10-27 23:38:29.898190"], ["updated_at", "2021-10-27 23:38:29.898190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 331], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 331], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started DELETE “/pets/387” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"387"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 387], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.0ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 387]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 331], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.920121"], ["updated_at", "2021-10-27 23:38:29.920121"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 332], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 332], ["created_at", "2021-10-27 23:38:29.922579"], ["updated_at", "2021-10-27 23:38:29.922579"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 332], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 332], ["created_at", "2021-10-27 23:38:29.924453"], ["updated_at", "2021-10-27 23:38:29.924453"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 332], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 332], ["created_at", "2021-10-27 23:38:29.926547"], ["updated_at", "2021-10-27 23:38:29.926547"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 332], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 332], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 332], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.8ms)

Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.4ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 332], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 332], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (4.6ms)

Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 1.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.4ms)

Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.969176"], ["updated_at", "2021-10-27 23:38:29.969176"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.3ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-27 23:38:29.971033"], ["id", 58]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/58 Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET “/applications/58” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"58"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 1.1ms)

Application Load (0.3ms)  SELECT  "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1  [["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.992530"], ["updated_at", "2021-10-27 23:38:29.992530"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 333], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 333], ["created_at", "2021-10-27 23:38:29.995327"], ["updated_at", "2021-10-27 23:38:29.995327"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/392” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"392"}
Pet Load (0.6ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 392], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 333], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.006464"], ["updated_at", "2021-10-27 23:38:30.006464"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 334], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 334], ["created_at", "2021-10-27 23:38:30.008641"], ["updated_at", "2021-10-27 23:38:30.008641"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/393” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"393"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 393], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 334], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started DELETE “/pets/393” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"393"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 393], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.9ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 393]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.4ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-27 23:38:30.023947"], ["updated_at", "2021-10-27 23:38:30.023947"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 335], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 335], ["created_at", "2021-10-27 23:38:30.025768"], ["updated_at", "2021-10-27 23:38:30.025768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/394/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"394"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 394], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 23:38:30.041126"], ["updated_at", "2021-10-27 23:38:30.041126"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 336], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 336], ["created_at", "2021-10-27 23:38:30.043644"], ["updated_at", "2021-10-27 23:38:30.043644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/395/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"395"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 395], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms) Started PATCH “/pets/395” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"395"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 395], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 336], ["LIMIT", 1]]
Pet Update (0.5ms)  UPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6  [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-27 23:38:30.054120"], ["id", 395]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets/395 Completed 302 Found in 3ms (ActiveRecord: 0.9ms) Started GET “/pets/395” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"395"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 395], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 336], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 23:38:30.060008"], ["updated_at", "2021-10-27 23:38:30.060008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 337], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 337], ["created_at", "2021-10-27 23:38:30.061918"], ["updated_at", "2021-10-27 23:38:30.061918"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/396/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"396"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 396], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started PATCH “/pets/396” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"396"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 396], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 337], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/pets/396/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/pets/396/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"396"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 396], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Shelter", "city"=>"Houston", "foster_program"=>"1", "rank"=>"7", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Houston Shelter"], ["city", "Houston"], ["rank", 7], ["created_at", "2021-10-27 23:38:30.092041"], ["updated_at", "2021-10-27 23:38:30.092041"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"", "foster_program"=>"0", "rank"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/shelters/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.110742"], ["updated_at", "2021-10-27 23:38:30.110742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.111882"], ["updated_at", "2021-10-27 23:38:30.111882"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.113004"], ["updated_at", "2021-10-27 23:38:30.113004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 339], ["created_at", "2021-10-27 23:38:30.114296"], ["updated_at", "2021-10-27 23:38:30.114296"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 339], ["created_at", "2021-10-27 23:38:30.115424"], ["updated_at", "2021-10-27 23:38:30.115424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 341], ["created_at", "2021-10-27 23:38:30.116849"], ["updated_at", "2021-10-27 23:38:30.116849"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.124403"], ["updated_at", "2021-10-27 23:38:30.124403"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.125461"], ["updated_at", "2021-10-27 23:38:30.125461"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.126263"], ["updated_at", "2021-10-27 23:38:30.126263"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 342], ["created_at", "2021-10-27 23:38:30.127353"], ["updated_at", "2021-10-27 23:38:30.127353"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 342], ["created_at", "2021-10-27 23:38:30.128740"], ["updated_at", "2021-10-27 23:38:30.128740"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 344], ["created_at", "2021-10-27 23:38:30.130271"], ["updated_at", "2021-10-27 23:38:30.130271"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.138905"], ["updated_at", "2021-10-27 23:38:30.138905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.140506"], ["updated_at", "2021-10-27 23:38:30.140506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.141359"], ["updated_at", "2021-10-27 23:38:30.141359"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 345], ["created_at", "2021-10-27 23:38:30.142454"], ["updated_at", "2021-10-27 23:38:30.142454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 345], ["created_at", "2021-10-27 23:38:30.143513"], ["updated_at", "2021-10-27 23:38:30.143513"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 347], ["created_at", "2021-10-27 23:38:30.144878"], ["updated_at", "2021-10-27 23:38:30.144878"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.9ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.9ms) Started GET “/shelters?sort=pet_count” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Parameters: {"sort"=>"pet_count"}
Rendering shelters/index.html.erb within layouts/application
Shelter Load (2.2ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
Rendered shelters/index.html.erb within layouts/application (3.0ms)

Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 2.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.157889"], ["updated_at", "2021-10-27 23:38:30.157889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.158944"], ["updated_at", "2021-10-27 23:38:30.158944"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.160129"], ["updated_at", "2021-10-27 23:38:30.160129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 348], ["created_at", "2021-10-27 23:38:30.161479"], ["updated_at", "2021-10-27 23:38:30.161479"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 348], ["created_at", "2021-10-27 23:38:30.163163"], ["updated_at", "2021-10-27 23:38:30.163163"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 350], ["created_at", "2021-10-27 23:38:30.164624"], ["updated_at", "2021-10-27 23:38:30.164624"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.5ms) Started GET “/shelters/348/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"348"}
Shelter Load (0.5ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 348], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (1.0ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.177129"], ["updated_at", "2021-10-27 23:38:30.177129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.178153"], ["updated_at", "2021-10-27 23:38:30.178153"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.178953"], ["updated_at", "2021-10-27 23:38:30.178953"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 351], ["created_at", "2021-10-27 23:38:30.180566"], ["updated_at", "2021-10-27 23:38:30.180566"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 351], ["created_at", "2021-10-27 23:38:30.181967"], ["updated_at", "2021-10-27 23:38:30.181967"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 353], ["created_at", "2021-10-27 23:38:30.183205"], ["updated_at", "2021-10-27 23:38:30.183205"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started DELETE “/shelters/351” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#destroy as HTML

Parameters: {"id"=>"351"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 351], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 351]]
Pet Destroy (0.5ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 409]]
Pet Destroy (0.4ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 410]]
Shelter Destroy (0.4ms)  DELETE FROM "shelters" WHERE "shelters"."id" = $1  [["id", 351]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 4ms (ActiveRecord: 2.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.199141"], ["updated_at", "2021-10-27 23:38:30.199141"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.200419"], ["updated_at", "2021-10-27 23:38:30.200419"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.201348"], ["updated_at", "2021-10-27 23:38:30.201348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 354], ["created_at", "2021-10-27 23:38:30.202603"], ["updated_at", "2021-10-27 23:38:30.202603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 354], ["created_at", "2021-10-27 23:38:30.203952"], ["updated_at", "2021-10-27 23:38:30.203952"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 356], ["created_at", "2021-10-27 23:38:30.205259"], ["updated_at", "2021-10-27 23:38:30.205259"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.211048"], ["updated_at", "2021-10-27 23:38:30.211048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.212346"], ["updated_at", "2021-10-27 23:38:30.212346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.213346"], ["updated_at", "2021-10-27 23:38:30.213346"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 357], ["created_at", "2021-10-27 23:38:30.214724"], ["updated_at", "2021-10-27 23:38:30.214724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 357], ["created_at", "2021-10-27 23:38:30.216147"], ["updated_at", "2021-10-27 23:38:30.216147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 359], ["created_at", "2021-10-27 23:38:30.217672"], ["updated_at", "2021-10-27 23:38:30.217672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started GET “/shelters?utf8=%E2%9C%93&search=RGV&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"RGV", "commit"=>"Search"}
Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%RGV%')
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.230449"], ["updated_at", "2021-10-27 23:38:30.230449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.231835"], ["updated_at", "2021-10-27 23:38:30.231835"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 360], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 360], ["created_at", "2021-10-27 23:38:30.233942"], ["updated_at", "2021-10-27 23:38:30.233942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 360], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 360], ["created_at", "2021-10-27 23:38:30.235601"], ["updated_at", "2021-10-27 23:38:30.235601"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 361], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 361], ["created_at", "2021-10-27 23:38:30.236811"], ["updated_at", "2021-10-27 23:38:30.236811"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 360], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 360], ["created_at", "2021-10-27 23:38:30.237985"], ["updated_at", "2021-10-27 23:38:30.237985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/360/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"360"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 360], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 360], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.253998"], ["updated_at", "2021-10-27 23:38:30.253998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.255593"], ["updated_at", "2021-10-27 23:38:30.255593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 362], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 362], ["created_at", "2021-10-27 23:38:30.257215"], ["updated_at", "2021-10-27 23:38:30.257215"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 362], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 362], ["created_at", "2021-10-27 23:38:30.258811"], ["updated_at", "2021-10-27 23:38:30.258811"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 363], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 363], ["created_at", "2021-10-27 23:38:30.260305"], ["updated_at", "2021-10-27 23:38:30.260305"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 362], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 362], ["created_at", "2021-10-27 23:38:30.261857"], ["updated_at", "2021-10-27 23:38:30.261857"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/362/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"362"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 362], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 362], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.6ms) Started GET “/shelters/362/pets/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"362"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 362], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.272718"], ["updated_at", "2021-10-27 23:38:30.272718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.274001"], ["updated_at", "2021-10-27 23:38:30.274001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 364], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 364], ["created_at", "2021-10-27 23:38:30.275535"], ["updated_at", "2021-10-27 23:38:30.275535"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 364], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 364], ["created_at", "2021-10-27 23:38:30.277267"], ["updated_at", "2021-10-27 23:38:30.277267"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 365], ["LIMIT", 1]]
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 365], ["created_at", "2021-10-27 23:38:30.279077"], ["updated_at", "2021-10-27 23:38:30.279077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 364], ["LIMIT", 1]]
Pet Create (1.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 364], ["created_at", "2021-10-27 23:38:30.281307"], ["updated_at", "2021-10-27 23:38:30.281307"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/364/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"364"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 364], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 364], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/pets/426/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"426"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 426], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.291068"], ["updated_at", "2021-10-27 23:38:30.291068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.292291"], ["updated_at", "2021-10-27 23:38:30.292291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 366], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 366], ["created_at", "2021-10-27 23:38:30.293972"], ["updated_at", "2021-10-27 23:38:30.293972"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 366], ["LIMIT", 1]]
Pet Create (1.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 366], ["created_at", "2021-10-27 23:38:30.295901"], ["updated_at", "2021-10-27 23:38:30.295901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 367], ["LIMIT", 1]]
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 367], ["created_at", "2021-10-27 23:38:30.298190"], ["updated_at", "2021-10-27 23:38:30.298190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 366], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 366], ["created_at", "2021-10-27 23:38:30.300133"], ["updated_at", "2021-10-27 23:38:30.300133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/366/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"366"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 366], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 366], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started DELETE “/pets/430” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"430"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 430], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.9ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 430]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 366], ["LIMIT", 1]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 367], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 366], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.314492"], ["updated_at", "2021-10-27 23:38:30.314492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.315580"], ["updated_at", "2021-10-27 23:38:30.315580"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 368], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 368], ["created_at", "2021-10-27 23:38:30.316973"], ["updated_at", "2021-10-27 23:38:30.316973"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 368], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 368], ["created_at", "2021-10-27 23:38:30.318456"], ["updated_at", "2021-10-27 23:38:30.318456"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 369], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 369], ["created_at", "2021-10-27 23:38:30.320081"], ["updated_at", "2021-10-27 23:38:30.320081"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 368], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 368], ["created_at", "2021-10-27 23:38:30.321611"], ["updated_at", "2021-10-27 23:38:30.321611"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/368/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"368"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 368], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 368], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.329534"], ["updated_at", "2021-10-27 23:38:30.329534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.330859"], ["updated_at", "2021-10-27 23:38:30.330859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 370], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 370], ["created_at", "2021-10-27 23:38:30.332280"], ["updated_at", "2021-10-27 23:38:30.332280"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 370], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 370], ["created_at", "2021-10-27 23:38:30.333611"], ["updated_at", "2021-10-27 23:38:30.333611"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 371], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 371], ["created_at", "2021-10-27 23:38:30.335068"], ["updated_at", "2021-10-27 23:38:30.335068"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 370], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 370], ["created_at", "2021-10-27 23:38:30.336764"], ["updated_at", "2021-10-27 23:38:30.336764"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/370/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"370"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 370], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 370], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/shelters/370/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML

Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"370"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 370], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')  [["shelter_id", 370], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.7ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.351008"], ["updated_at", "2021-10-27 23:38:30.351008"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.352331"], ["updated_at", "2021-10-27 23:38:30.352331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 372], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 372], ["created_at", "2021-10-27 23:38:30.353965"], ["updated_at", "2021-10-27 23:38:30.353965"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 372], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 372], ["created_at", "2021-10-27 23:38:30.355652"], ["updated_at", "2021-10-27 23:38:30.355652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 373], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 373], ["created_at", "2021-10-27 23:38:30.357223"], ["updated_at", "2021-10-27 23:38:30.357223"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 372], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 372], ["created_at", "2021-10-27 23:38:30.358744"], ["updated_at", "2021-10-27 23:38:30.358744"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/372/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"372"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 372], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 372], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/shelters/372/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML

Parameters: {"sort"=>"alphabetical", "shelter_id"=>"372"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 372], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 372], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.8ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.371652"], ["updated_at", "2021-10-27 23:38:30.371652"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/374” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"374"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 374], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.5ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 374]]
Rendered shelters/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.379830"], ["updated_at", "2021-10-27 23:38:30.379830"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 375], ["created_at", "2021-10-27 23:38:30.381318"], ["updated_at", "2021-10-27 23:38:30.381318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/375” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"375"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 375], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 375]]
Rendered shelters/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.5ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 375]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.387374"], ["updated_at", "2021-10-27 23:38:30.387374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/376” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"376"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 376], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.5ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 376]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms) Started DELETE “/shelters/376” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#destroy as HTML

Parameters: {"id"=>"376"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 376], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 376]]
Shelter Destroy (0.4ms)  DELETE FROM "shelters" WHERE "shelters"."id" = $1  [["id", 376]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.399436"], ["updated_at", "2021-10-27 23:38:30.399436"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/377” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"377"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 377], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 377]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.5ms) Started GET “/shelters/377/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"377"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 377], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 377], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.409625"], ["updated_at", "2021-10-27 23:38:30.409625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/378/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"378"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 378], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.415593"], ["updated_at", "2021-10-27 23:38:30.415593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/379/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"379"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 379], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/shelters/379” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita Shelter", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"10", "commit"=>"Save ", "id"=>"379"}

Unpermitted parameters: :utf8, :_method, :commit

Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 379], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Update (0.7ms)  UPDATE "shelters" SET "name" = $1, "city" = $2, "rank" = $3, "updated_at" = $4 WHERE "shelters"."id" = $5  [["name", "Wichita Shelter"], ["city", "Wichita"], ["rank", 10], ["updated_at", "2021-10-27 23:38:30.425111"], ["id", 379]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.432229"], ["updated_at", "2021-10-27 23:38:30.432229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/380/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"380"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 380], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/shelters/380” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"", "commit"=>"Save ", "id"=>"380"}

Unpermitted parameters: :utf8, :_method, :commit

Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 380], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/shelters/380/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/shelters/380/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"380"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 380], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (1.9ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.460797"], ["updated_at", "2021-10-27 23:38:30.460797"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/1/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"1"}
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 1], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.8ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.470577"], ["updated_at", "2021-10-27 23:38:30.470577"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/2/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"2"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started POST “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"2"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Veterinarian Create (2.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 2], ["created_at", "2021-10-27 23:38:30.491311"], ["updated_at", "2021-10-27 23:38:30.491311"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/2/veterinarians Completed 302 Found in 16ms (ActiveRecord: 10.3ms) Started GET “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"2"}
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 2], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 2], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.7ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.502493"], ["updated_at", "2021-10-27 23:38:30.502493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"3"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started POST “/veterinary_offices/3/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"3"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
 (0.2ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/3/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"3"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.517793"], ["updated_at", "2021-10-27 23:38:30.517793"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 23:38:30.519243"], ["updated_at", "2021-10-27 23:38:30.519243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 23:38:30.520931"], ["updated_at", "2021-10-27 23:38:30.520931"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 4], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.529491"], ["updated_at", "2021-10-27 23:38:30.529491"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 23:38:30.531001"], ["updated_at", "2021-10-27 23:38:30.531001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 23:38:30.532792"], ["updated_at", "2021-10-27 23:38:30.532792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 5], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.537917"], ["updated_at", "2021-10-27 23:38:30.537917"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 23:38:30.539449"], ["updated_at", "2021-10-27 23:38:30.539449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 23:38:30.541117"], ["updated_at", "2021-10-27 23:38:30.541117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/veterinarians/6/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"6"}
Veterinarian Load (0.7ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 6], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.552569"], ["updated_at", "2021-10-27 23:38:30.552569"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 23:38:30.554124"], ["updated_at", "2021-10-27 23:38:30.554124"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 23:38:30.555384"], ["updated_at", "2021-10-27 23:38:30.555384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started DELETE “/veterinarians/8” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"8"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 8]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 7], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.567118"], ["updated_at", "2021-10-27 23:38:30.567118"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 8], ["created_at", "2021-10-27 23:38:30.568728"], ["updated_at", "2021-10-27 23:38:30.568728"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/10” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"10"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 10], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 8], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.575691"], ["updated_at", "2021-10-27 23:38:30.575691"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 9], ["created_at", "2021-10-27 23:38:30.577839"], ["updated_at", "2021-10-27 23:38:30.577839"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/11” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"11"}
Veterinarian Load (1.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 9], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.5ms) Started DELETE “/veterinarians/11” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"11"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 11]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.7ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (0.3ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:38:30.592528"], ["updated_at", "2021-10-27 23:38:30.592528"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 10], ["created_at", "2021-10-27 23:38:30.593906"], ["updated_at", "2021-10-27 23:38:30.593906"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/12/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"12"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:38:30.600052"], ["updated_at", "2021-10-27 23:38:30.600052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 11], ["created_at", "2021-10-27 23:38:30.601641"], ["updated_at", "2021-10-27 23:38:30.601641"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/13/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"13"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/13” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"13"}
Veterinarian Load (0.1ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Veterinarian Update (0.6ms)  UPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5  [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-27 23:38:30.610323"], ["id", 13]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/13 Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/veterinarians/13” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"13"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 11], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:38:30.616653"], ["updated_at", "2021-10-27 23:38:30.616653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 12], ["created_at", "2021-10-27 23:38:30.618414"], ["updated_at", "2021-10-27 23:38:30.618414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"14"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/14” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"14"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 12], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/14/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"14"}
Veterinarian Load (0.1ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-27 23:38:30.645084"], ["updated_at", "2021-10-27 23:38:30.645084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:38:30.662333"], ["updated_at", "2021-10-27 23:38:30.662333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:38:30.663746"], ["updated_at", "2021-10-27 23:38:30.663746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.664698"], ["updated_at", "2021-10-27 23:38:30.664698"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 23:38:30.665989"], ["updated_at", "2021-10-27 23:38:30.665989"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 23:38:30.667425"], ["updated_at", "2021-10-27 23:38:30.667425"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 16], ["created_at", "2021-10-27 23:38:30.668621"], ["updated_at", "2021-10-27 23:38:30.668621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:38:30.674859"], ["updated_at", "2021-10-27 23:38:30.674859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:38:30.676025"], ["updated_at", "2021-10-27 23:38:30.676025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.677172"], ["updated_at", "2021-10-27 23:38:30.677172"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 23:38:30.678608"], ["updated_at", "2021-10-27 23:38:30.678608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 23:38:30.679581"], ["updated_at", "2021-10-27 23:38:30.679581"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 19], ["created_at", "2021-10-27 23:38:30.680728"], ["updated_at", "2021-10-27 23:38:30.680728"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.6ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:38:30.688397"], ["updated_at", "2021-10-27 23:38:30.688397"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:38:30.689615"], ["updated_at", "2021-10-27 23:38:30.689615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.690622"], ["updated_at", "2021-10-27 23:38:30.690622"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 23:38:30.691863"], ["updated_at", "2021-10-27 23:38:30.691863"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 23:38:30.693306"], ["updated_at", "2021-10-27 23:38:30.693306"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 22], ["created_at", "2021-10-27 23:38:30.695070"], ["updated_at", "2021-10-27 23:38:30.695070"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML

Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (1.2ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:38:30.705230"], ["updated_at", "2021-10-27 23:38:30.705230"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:38:30.706468"], ["updated_at", "2021-10-27 23:38:30.706468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.707478"], ["updated_at", "2021-10-27 23:38:30.707478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 23:38:30.708890"], ["updated_at", "2021-10-27 23:38:30.708890"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 23:38:30.710444"], ["updated_at", "2021-10-27 23:38:30.710444"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 25], ["created_at", "2021-10-27 23:38:30.711847"], ["updated_at", "2021-10-27 23:38:30.711847"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.5ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms) Started GET “/veterinary_offices/23/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"23"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 23], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:38:30.722755"], ["updated_at", "2021-10-27 23:38:30.722755"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:38:30.723869"], ["updated_at", "2021-10-27 23:38:30.723869"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.0ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.724594"], ["updated_at", "2021-10-27 23:38:30.724594"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 23:38:30.725629"], ["updated_at", "2021-10-27 23:38:30.725629"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 23:38:30.726936"], ["updated_at", "2021-10-27 23:38:30.726936"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 28], ["created_at", "2021-10-27 23:38:30.728246"], ["updated_at", "2021-10-27 23:38:30.728246"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.5ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.5ms) Started DELETE “/veterinary_offices/26” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"26"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 26], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 26]]
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 27]]
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 28]]
VeterinaryOffice Destroy (0.9ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 26]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 4ms (ActiveRecord: 2.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.743301"], ["updated_at", "2021-10-27 23:38:30.743301"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/29” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"29"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 29], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.6ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 29]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.8ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.751115"], ["updated_at", "2021-10-27 23:38:30.751115"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/30” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"30"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 30], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.5ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 30]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)

 (0.2ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 30]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 23:38:30.756400"], ["updated_at", "2021-10-27 23:38:30.756400"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/31” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"31"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 31]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms) Started DELETE “/veterinary_offices/31” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"31"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 31], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 31]]
VeterinaryOffice Destroy (0.8ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 31]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 3ms (ActiveRecord: 1.5ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 23:38:30.770608"], ["updated_at", "2021-10-27 23:38:30.770608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/32” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"32"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 32]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms) Started GET “/veterinary_offices/32/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"32"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 32], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:38:30.779193"], ["updated_at", "2021-10-27 23:38:30.779193"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/33/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"33"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 33], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:38:30.784965"], ["updated_at", "2021-10-27 23:38:30.784965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/34/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"34"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/34” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"34"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 34], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Update (0.4ms)  UPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4  [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-27 23:38:30.793714"], ["id", 34]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:38:30.799941"], ["updated_at", "2021-10-27 23:38:30.799941"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"35"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/35” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"35"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/35/edit Completed 302 Found in 2ms (ActiveRecord: 0.4ms) Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"35"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.815370"], ["updated_at", "2021-10-27 23:38:30.815370"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.816985"], ["updated_at", "2021-10-27 23:38:30.816985"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 23:38:30.818415"], ["updated_at", "2021-10-27 23:38:30.818415"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 23:38:30.819792"], ["updated_at", "2021-10-27 23:38:30.819792"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 23:38:30.821131"], ["updated_at", "2021-10-27 23:38:30.821131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 23:38:30.822673"], ["updated_at", "2021-10-27 23:38:30.822673"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 37], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 23:38:30.824314"], ["updated_at", "2021-10-27 23:38:30.824314"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/36/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"36"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 36], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.832274"], ["updated_at", "2021-10-27 23:38:30.832274"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.833540"], ["updated_at", "2021-10-27 23:38:30.833540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 23:38:30.835039"], ["updated_at", "2021-10-27 23:38:30.835039"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 23:38:30.836563"], ["updated_at", "2021-10-27 23:38:30.836563"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 23:38:30.838154"], ["updated_at", "2021-10-27 23:38:30.838154"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 23:38:30.839883"], ["updated_at", "2021-10-27 23:38:30.839883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 39], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 23:38:30.841234"], ["updated_at", "2021-10-27 23:38:30.841234"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/38/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"38"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 38], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 38], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started GET “/veterinarians/36/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"36"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 36], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.850766"], ["updated_at", "2021-10-27 23:38:30.850766"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.852162"], ["updated_at", "2021-10-27 23:38:30.852162"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 23:38:30.853939"], ["updated_at", "2021-10-27 23:38:30.853939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 23:38:30.855794"], ["updated_at", "2021-10-27 23:38:30.855794"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 23:38:30.857644"], ["updated_at", "2021-10-27 23:38:30.857644"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 23:38:30.858883"], ["updated_at", "2021-10-27 23:38:30.858883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Veterinarian Create (2.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 23:38:30.860342"], ["updated_at", "2021-10-27 23:38:30.860342"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/40/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"40"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (1.6ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 40], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (2.3ms)

Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 1.8ms) Started DELETE “/veterinarians/41” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"41"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.5ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 41]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 40], ["LIMIT", 1]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 41], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (2.2ms)

Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.8ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.877927"], ["updated_at", "2021-10-27 23:38:30.877927"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.879372"], ["updated_at", "2021-10-27 23:38:30.879372"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 23:38:30.881091"], ["updated_at", "2021-10-27 23:38:30.881091"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 23:38:30.883210"], ["updated_at", "2021-10-27 23:38:30.883210"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 23:38:30.884622"], ["updated_at", "2021-10-27 23:38:30.884622"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 23:38:30.885940"], ["updated_at", "2021-10-27 23:38:30.885940"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 43], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 23:38:30.887290"], ["updated_at", "2021-10-27 23:38:30.887290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/42/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"42"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 42], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices/42/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"42"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 42], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.3ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (1.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.897971"], ["updated_at", "2021-10-27 23:38:30.897971"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.900019"], ["updated_at", "2021-10-27 23:38:30.900019"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 23:38:30.901519"], ["updated_at", "2021-10-27 23:38:30.901519"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 23:38:30.902904"], ["updated_at", "2021-10-27 23:38:30.902904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 23:38:30.904217"], ["updated_at", "2021-10-27 23:38:30.904217"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 23:38:30.905609"], ["updated_at", "2021-10-27 23:38:30.905609"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 45], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 23:38:30.907305"], ["updated_at", "2021-10-27 23:38:30.907305"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/44/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"44"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 44], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 44], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.913874"], ["updated_at", "2021-10-27 23:38:30.913874"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.915059"], ["updated_at", "2021-10-27 23:38:30.915059"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 23:38:30.917247"], ["updated_at", "2021-10-27 23:38:30.917247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 23:38:30.918621"], ["updated_at", "2021-10-27 23:38:30.918621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 23:38:30.919767"], ["updated_at", "2021-10-27 23:38:30.919767"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 23:38:30.920904"], ["updated_at", "2021-10-27 23:38:30.920904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 47], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 23:38:30.922155"], ["updated_at", "2021-10-27 23:38:30.922155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/46/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"46"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/46/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"46"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.7ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')  [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.9ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.935493"], ["updated_at", "2021-10-27 23:38:30.935493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.936515"], ["updated_at", "2021-10-27 23:38:30.936515"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 23:38:30.937759"], ["updated_at", "2021-10-27 23:38:30.937759"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 23:38:30.939043"], ["updated_at", "2021-10-27 23:38:30.939043"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 48], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 23:38:30.940521"], ["updated_at", "2021-10-27 23:38:30.940521"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 23:38:30.942107"], ["updated_at", "2021-10-27 23:38:30.942107"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 23:38:30.943599"], ["updated_at", "2021-10-27 23:38:30.943599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/49/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"49"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/49/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"49"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:30.963671"], ["updated_at", "2021-10-27 23:38:30.963671"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 381], ["created_at", "2021-10-27 23:38:30.965725"], ["updated_at", "2021-10-27 23:38:30.965725"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 381], ["created_at", "2021-10-27 23:38:30.967209"], ["updated_at", "2021-10-27 23:38:30.967209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 381], ["created_at", "2021-10-27 23:38:30.968268"], ["updated_at", "2021-10-27 23:38:30.968268"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:30.969189"], ["updated_at", "2021-10-27 23:38:30.969189"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 447], ["application_id", 59], ["created_at", "2021-10-27 23:38:30.970581"], ["updated_at", "2021-10-27 23:38:30.970581"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 448], ["application_id", 59], ["created_at", "2021-10-27 23:38:30.971981"], ["updated_at", "2021-10-27 23:38:30.971981"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.0ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:30.978196"], ["updated_at", "2021-10-27 23:38:30.978196"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 382], ["created_at", "2021-10-27 23:38:30.979799"], ["updated_at", "2021-10-27 23:38:30.979799"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 382], ["created_at", "2021-10-27 23:38:30.981113"], ["updated_at", "2021-10-27 23:38:30.981113"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 382], ["created_at", "2021-10-27 23:38:30.982326"], ["updated_at", "2021-10-27 23:38:30.982326"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:30.983774"], ["updated_at", "2021-10-27 23:38:30.983774"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 450], ["application_id", 60], ["created_at", "2021-10-27 23:38:30.985384"], ["updated_at", "2021-10-27 23:38:30.985384"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 451], ["application_id", 60], ["created_at", "2021-10-27 23:38:30.986688"], ["updated_at", "2021-10-27 23:38:30.986688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:30.989121"], ["updated_at", "2021-10-27 23:38:30.989121"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 383], ["created_at", "2021-10-27 23:38:30.990321"], ["updated_at", "2021-10-27 23:38:30.990321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 383], ["created_at", "2021-10-27 23:38:30.991711"], ["updated_at", "2021-10-27 23:38:30.991711"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 383], ["created_at", "2021-10-27 23:38:30.992918"], ["updated_at", "2021-10-27 23:38:30.992918"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:30.993831"], ["updated_at", "2021-10-27 23:38:30.993831"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 453], ["application_id", 61], ["created_at", "2021-10-27 23:38:30.995248"], ["updated_at", "2021-10-27 23:38:30.995248"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 454], ["application_id", 61], ["created_at", "2021-10-27 23:38:30.996838"], ["updated_at", "2021-10-27 23:38:30.996838"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.999337"], ["updated_at", "2021-10-27 23:38:30.999337"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 384], ["created_at", "2021-10-27 23:38:31.001184"], ["updated_at", "2021-10-27 23:38:31.001184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 384], ["created_at", "2021-10-27 23:38:31.002430"], ["updated_at", "2021-10-27 23:38:31.002430"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 384], ["created_at", "2021-10-27 23:38:31.003426"], ["updated_at", "2021-10-27 23:38:31.003426"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.006379"], ["updated_at", "2021-10-27 23:38:31.006379"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 385], ["created_at", "2021-10-27 23:38:31.007695"], ["updated_at", "2021-10-27 23:38:31.007695"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 385], ["created_at", "2021-10-27 23:38:31.008828"], ["updated_at", "2021-10-27 23:38:31.008828"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 385], ["created_at", "2021-10-27 23:38:31.009781"], ["updated_at", "2021-10-27 23:38:31.009781"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.011469"], ["updated_at", "2021-10-27 23:38:31.011469"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 386], ["created_at", "2021-10-27 23:38:31.012653"], ["updated_at", "2021-10-27 23:38:31.012653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 386], ["created_at", "2021-10-27 23:38:31.013724"], ["updated_at", "2021-10-27 23:38:31.013724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 386], ["created_at", "2021-10-27 23:38:31.014996"], ["updated_at", "2021-10-27 23:38:31.014996"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.017638"], ["updated_at", "2021-10-27 23:38:31.017638"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 387], ["created_at", "2021-10-27 23:38:31.018875"], ["updated_at", "2021-10-27 23:38:31.018875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 387], ["created_at", "2021-10-27 23:38:31.019891"], ["updated_at", "2021-10-27 23:38:31.019891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 387], ["created_at", "2021-10-27 23:38:31.020868"], ["updated_at", "2021-10-27 23:38:31.020868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.025939"], ["updated_at", "2021-10-27 23:38:31.025939"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 388], ["created_at", "2021-10-27 23:38:31.027320"], ["updated_at", "2021-10-27 23:38:31.027320"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 388], ["created_at", "2021-10-27 23:38:31.028892"], ["updated_at", "2021-10-27 23:38:31.028892"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 388], ["created_at", "2021-10-27 23:38:31.030391"], ["updated_at", "2021-10-27 23:38:31.030391"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.035181"], ["updated_at", "2021-10-27 23:38:31.035181"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 389], ["created_at", "2021-10-27 23:38:31.036457"], ["updated_at", "2021-10-27 23:38:31.036457"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 389], ["created_at", "2021-10-27 23:38:31.037487"], ["updated_at", "2021-10-27 23:38:31.037487"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 389], ["created_at", "2021-10-27 23:38:31.038610"], ["updated_at", "2021-10-27 23:38:31.038610"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.041662"], ["updated_at", "2021-10-27 23:38:31.041662"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 390], ["created_at", "2021-10-27 23:38:31.043235"], ["updated_at", "2021-10-27 23:38:31.043235"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 390], ["created_at", "2021-10-27 23:38:31.044549"], ["updated_at", "2021-10-27 23:38:31.044549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.1ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 390], ["created_at", "2021-10-27 23:38:31.045995"], ["updated_at", "2021-10-27 23:38:31.045995"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')
 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.050040"], ["updated_at", "2021-10-27 23:38:31.050040"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 391], ["created_at", "2021-10-27 23:38:31.051222"], ["updated_at", "2021-10-27 23:38:31.051222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 391], ["created_at", "2021-10-27 23:38:31.052255"], ["updated_at", "2021-10-27 23:38:31.052255"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 391], ["created_at", "2021-10-27 23:38:31.053231"], ["updated_at", "2021-10-27 23:38:31.053231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.055590"], ["updated_at", "2021-10-27 23:38:31.055590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 392], ["created_at", "2021-10-27 23:38:31.057059"], ["updated_at", "2021-10-27 23:38:31.057059"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 392], ["created_at", "2021-10-27 23:38:31.058457"], ["updated_at", "2021-10-27 23:38:31.058457"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 392], ["created_at", "2021-10-27 23:38:31.059732"], ["updated_at", "2021-10-27 23:38:31.059732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.061757"], ["updated_at", "2021-10-27 23:38:31.061757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.062875"], ["updated_at", "2021-10-27 23:38:31.062875"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.064102"], ["updated_at", "2021-10-27 23:38:31.064102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 393], ["created_at", "2021-10-27 23:38:31.065448"], ["updated_at", "2021-10-27 23:38:31.065448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 393], ["created_at", "2021-10-27 23:38:31.066929"], ["updated_at", "2021-10-27 23:38:31.066929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 395], ["created_at", "2021-10-27 23:38:31.068287"], ["updated_at", "2021-10-27 23:38:31.068287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 393], ["created_at", "2021-10-27 23:38:31.069565"], ["updated_at", "2021-10-27 23:38:31.069565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.071470"], ["updated_at", "2021-10-27 23:38:31.071470"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.072510"], ["updated_at", "2021-10-27 23:38:31.072510"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.073532"], ["updated_at", "2021-10-27 23:38:31.073532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 396], ["created_at", "2021-10-27 23:38:31.074746"], ["updated_at", "2021-10-27 23:38:31.074746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 396], ["created_at", "2021-10-27 23:38:31.076005"], ["updated_at", "2021-10-27 23:38:31.076005"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 398], ["created_at", "2021-10-27 23:38:31.077374"], ["updated_at", "2021-10-27 23:38:31.077374"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 396], ["created_at", "2021-10-27 23:38:31.078772"], ["updated_at", "2021-10-27 23:38:31.078772"]]
 (0.6ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.084973"], ["updated_at", "2021-10-27 23:38:31.084973"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.086084"], ["updated_at", "2021-10-27 23:38:31.086084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.086987"], ["updated_at", "2021-10-27 23:38:31.086987"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 399], ["created_at", "2021-10-27 23:38:31.088261"], ["updated_at", "2021-10-27 23:38:31.088261"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 399], ["created_at", "2021-10-27 23:38:31.089579"], ["updated_at", "2021-10-27 23:38:31.089579"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 401], ["created_at", "2021-10-27 23:38:31.090910"], ["updated_at", "2021-10-27 23:38:31.090910"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 399], ["created_at", "2021-10-27 23:38:31.092231"], ["updated_at", "2021-10-27 23:38:31.092231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.097468"], ["updated_at", "2021-10-27 23:38:31.097468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.098715"], ["updated_at", "2021-10-27 23:38:31.098715"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.099909"], ["updated_at", "2021-10-27 23:38:31.099909"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 402], ["created_at", "2021-10-27 23:38:31.101208"], ["updated_at", "2021-10-27 23:38:31.101208"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 402], ["created_at", "2021-10-27 23:38:31.102284"], ["updated_at", "2021-10-27 23:38:31.102284"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 404], ["created_at", "2021-10-27 23:38:31.103330"], ["updated_at", "2021-10-27 23:38:31.103330"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 402], ["created_at", "2021-10-27 23:38:31.104316"], ["updated_at", "2021-10-27 23:38:31.104316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.107975"], ["updated_at", "2021-10-27 23:38:31.107975"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.109318"], ["updated_at", "2021-10-27 23:38:31.109318"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.110375"], ["updated_at", "2021-10-27 23:38:31.110375"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 405], ["created_at", "2021-10-27 23:38:31.111656"], ["updated_at", "2021-10-27 23:38:31.111656"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 405], ["created_at", "2021-10-27 23:38:31.113248"], ["updated_at", "2021-10-27 23:38:31.113248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 407], ["created_at", "2021-10-27 23:38:31.114780"], ["updated_at", "2021-10-27 23:38:31.114780"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 405], ["created_at", "2021-10-27 23:38:31.117099"], ["updated_at", "2021-10-27 23:38:31.117099"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.120072"], ["updated_at", "2021-10-27 23:38:31.120072"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.121117"], ["updated_at", "2021-10-27 23:38:31.121117"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.122155"], ["updated_at", "2021-10-27 23:38:31.122155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 408], ["created_at", "2021-10-27 23:38:31.123383"], ["updated_at", "2021-10-27 23:38:31.123383"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 408], ["created_at", "2021-10-27 23:38:31.124677"], ["updated_at", "2021-10-27 23:38:31.124677"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 410], ["created_at", "2021-10-27 23:38:31.125986"], ["updated_at", "2021-10-27 23:38:31.125986"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 408], ["created_at", "2021-10-27 23:38:31.127233"], ["updated_at", "2021-10-27 23:38:31.127233"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.130187"], ["updated_at", "2021-10-27 23:38:31.130187"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.131297"], ["updated_at", "2021-10-27 23:38:31.131297"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.132269"], ["updated_at", "2021-10-27 23:38:31.132269"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 411], ["created_at", "2021-10-27 23:38:31.133481"], ["updated_at", "2021-10-27 23:38:31.133481"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 411], ["created_at", "2021-10-27 23:38:31.134590"], ["updated_at", "2021-10-27 23:38:31.134590"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 413], ["created_at", "2021-10-27 23:38:31.135783"], ["updated_at", "2021-10-27 23:38:31.135783"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 411], ["created_at", "2021-10-27 23:38:31.136817"], ["updated_at", "2021-10-27 23:38:31.136817"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.139517"], ["updated_at", "2021-10-27 23:38:31.139517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.140593"], ["updated_at", "2021-10-27 23:38:31.140593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.141596"], ["updated_at", "2021-10-27 23:38:31.141596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 414], ["created_at", "2021-10-27 23:38:31.142802"], ["updated_at", "2021-10-27 23:38:31.142802"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 414], ["created_at", "2021-10-27 23:38:31.144070"], ["updated_at", "2021-10-27 23:38:31.144070"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 416], ["created_at", "2021-10-27 23:38:31.145722"], ["updated_at", "2021-10-27 23:38:31.145722"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 414], ["created_at", "2021-10-27 23:38:31.146857"], ["updated_at", "2021-10-27 23:38:31.146857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.3ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.150398"], ["updated_at", "2021-10-27 23:38:31.150398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.151424"], ["updated_at", "2021-10-27 23:38:31.151424"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.152408"], ["updated_at", "2021-10-27 23:38:31.152408"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 417], ["created_at", "2021-10-27 23:38:31.153641"], ["updated_at", "2021-10-27 23:38:31.153641"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 417], ["created_at", "2021-10-27 23:38:31.154938"], ["updated_at", "2021-10-27 23:38:31.154938"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 419], ["created_at", "2021-10-27 23:38:31.156257"], ["updated_at", "2021-10-27 23:38:31.156257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 417], ["created_at", "2021-10-27 23:38:31.157627"], ["updated_at", "2021-10-27 23:38:31.157627"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.160151"], ["updated_at", "2021-10-27 23:38:31.160151"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.161201"], ["updated_at", "2021-10-27 23:38:31.161201"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.162211"], ["updated_at", "2021-10-27 23:38:31.162211"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 420], ["created_at", "2021-10-27 23:38:31.163565"], ["updated_at", "2021-10-27 23:38:31.163565"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 420], ["created_at", "2021-10-27 23:38:31.164977"], ["updated_at", "2021-10-27 23:38:31.164977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 422], ["created_at", "2021-10-27 23:38:31.166709"], ["updated_at", "2021-10-27 23:38:31.166709"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 420], ["created_at", "2021-10-27 23:38:31.168069"], ["updated_at", "2021-10-27 23:38:31.168069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:31.169281"], ["updated_at", "2021-10-27 23:38:31.169281"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 23:38:31.170451"], ["updated_at", "2021-10-27 23:38:31.170451"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 520], ["LIMIT", 1]]
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 520], ["application_id", 62], ["created_at", "2021-10-27 23:38:31.172539"], ["updated_at", "2021-10-27 23:38:31.172539"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 521], ["LIMIT", 1]]
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 521], ["application_id", 63], ["created_at", "2021-10-27 23:38:31.174531"], ["updated_at", "2021-10-27 23:38:31.174531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.5ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1  [["application_status", "Pending"]]
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)  [["id", 420], ["id", 422]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.179723"], ["updated_at", "2021-10-27 23:38:31.179723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.180963"], ["updated_at", "2021-10-27 23:38:31.180963"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.181959"], ["updated_at", "2021-10-27 23:38:31.181959"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 423], ["created_at", "2021-10-27 23:38:31.183133"], ["updated_at", "2021-10-27 23:38:31.183133"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 423], ["created_at", "2021-10-27 23:38:31.184202"], ["updated_at", "2021-10-27 23:38:31.184202"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 425], ["created_at", "2021-10-27 23:38:31.185618"], ["updated_at", "2021-10-27 23:38:31.185618"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 423], ["created_at", "2021-10-27 23:38:31.186901"], ["updated_at", "2021-10-27 23:38:31.186901"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 423], ["adoptable", true]]
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.189615"], ["updated_at", "2021-10-27 23:38:31.189615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.190783"], ["updated_at", "2021-10-27 23:38:31.190783"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.191804"], ["updated_at", "2021-10-27 23:38:31.191804"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 426], ["created_at", "2021-10-27 23:38:31.193027"], ["updated_at", "2021-10-27 23:38:31.193027"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 426], ["created_at", "2021-10-27 23:38:31.194501"], ["updated_at", "2021-10-27 23:38:31.194501"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 428], ["created_at", "2021-10-27 23:38:31.195709"], ["updated_at", "2021-10-27 23:38:31.195709"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 426], ["created_at", "2021-10-27 23:38:31.197050"], ["updated_at", "2021-10-27 23:38:31.197050"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 426], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.199727"], ["updated_at", "2021-10-27 23:38:31.199727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.200683"], ["updated_at", "2021-10-27 23:38:31.200683"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.201642"], ["updated_at", "2021-10-27 23:38:31.201642"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 429], ["created_at", "2021-10-27 23:38:31.202984"], ["updated_at", "2021-10-27 23:38:31.202984"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 429], ["created_at", "2021-10-27 23:38:31.204316"], ["updated_at", "2021-10-27 23:38:31.204316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 431], ["created_at", "2021-10-27 23:38:31.205646"], ["updated_at", "2021-10-27 23:38:31.205646"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 429], ["created_at", "2021-10-27 23:38:31.206981"], ["updated_at", "2021-10-27 23:38:31.206981"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 429], ["adoptable", true]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.209718"], ["updated_at", "2021-10-27 23:38:31.209718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.210763"], ["updated_at", "2021-10-27 23:38:31.210763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.211775"], ["updated_at", "2021-10-27 23:38:31.211775"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 432], ["created_at", "2021-10-27 23:38:31.213268"], ["updated_at", "2021-10-27 23:38:31.213268"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 432], ["created_at", "2021-10-27 23:38:31.214711"], ["updated_at", "2021-10-27 23:38:31.214711"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 434], ["created_at", "2021-10-27 23:38:31.216357"], ["updated_at", "2021-10-27 23:38:31.216357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 432], ["created_at", "2021-10-27 23:38:31.217704"], ["updated_at", "2021-10-27 23:38:31.217704"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 432]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.220382"], ["updated_at", "2021-10-27 23:38:31.220382"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 23:38:31.221740"], ["updated_at", "2021-10-27 23:38:31.221740"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 23:38:31.223089"], ["updated_at", "2021-10-27 23:38:31.223089"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 23:38:31.224305"], ["updated_at", "2021-10-27 23:38:31.224305"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 23:38:31.225517"], ["updated_at", "2021-10-27 23:38:31.225517"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.228734"], ["updated_at", "2021-10-27 23:38:31.228734"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 23:38:31.230222"], ["updated_at", "2021-10-27 23:38:31.230222"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 23:38:31.231551"], ["updated_at", "2021-10-27 23:38:31.231551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 23:38:31.232888"], ["updated_at", "2021-10-27 23:38:31.232888"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 23:38:31.234013"], ["updated_at", "2021-10-27 23:38:31.234013"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.239003"], ["updated_at", "2021-10-27 23:38:31.239003"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 23:38:31.240257"], ["updated_at", "2021-10-27 23:38:31.240257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 23:38:31.241488"], ["updated_at", "2021-10-27 23:38:31.241488"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 23:38:31.242833"], ["updated_at", "2021-10-27 23:38:31.242833"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 23:38:31.244042"], ["updated_at", "2021-10-27 23:38:31.244042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.248316"], ["updated_at", "2021-10-27 23:38:31.248316"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 23:38:31.249737"], ["updated_at", "2021-10-27 23:38:31.249737"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 23:38:31.251022"], ["updated_at", "2021-10-27 23:38:31.251022"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 23:38:31.252232"], ["updated_at", "2021-10-27 23:38:31.252232"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 23:38:31.253543"], ["updated_at", "2021-10-27 23:38:31.253543"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.256603"], ["updated_at", "2021-10-27 23:38:31.256603"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 23:38:31.257902"], ["updated_at", "2021-10-27 23:38:31.257902"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 23:38:31.259147"], ["updated_at", "2021-10-27 23:38:31.259147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 23:38:31.260404"], ["updated_at", "2021-10-27 23:38:31.260404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 23:38:31.261823"], ["updated_at", "2021-10-27 23:38:31.261823"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.7ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.265082"], ["updated_at", "2021-10-27 23:38:31.265082"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 23:38:31.266479"], ["updated_at", "2021-10-27 23:38:31.266479"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 23:38:31.267646"], ["updated_at", "2021-10-27 23:38:31.267646"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 23:38:31.270940"], ["updated_at", "2021-10-27 23:38:31.270940"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 23:38:31.272119"], ["updated_at", "2021-10-27 23:38:31.272119"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.274475"], ["updated_at", "2021-10-27 23:38:31.274475"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 23:38:31.275699"], ["updated_at", "2021-10-27 23:38:31.275699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 23:38:31.276883"], ["updated_at", "2021-10-27 23:38:31.276883"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 23:38:31.278144"], ["updated_at", "2021-10-27 23:38:31.278144"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 23:38:31.279507"], ["updated_at", "2021-10-27 23:38:31.279507"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.281695"], ["updated_at", "2021-10-27 23:38:31.281695"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.283042"], ["updated_at", "2021-10-27 23:38:31.283042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 23:38:31.284519"], ["updated_at", "2021-10-27 23:38:31.284519"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 23:38:31.285715"], ["updated_at", "2021-10-27 23:38:31.285715"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 57], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 23:38:31.286838"], ["updated_at", "2021-10-27 23:38:31.286838"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 58], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 58], ["created_at", "2021-10-27 23:38:31.288055"], ["updated_at", "2021-10-27 23:38:31.288055"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.289923"], ["updated_at", "2021-10-27 23:38:31.289923"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.290915"], ["updated_at", "2021-10-27 23:38:31.290915"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 23:38:31.292317"], ["updated_at", "2021-10-27 23:38:31.292317"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 23:38:31.293795"], ["updated_at", "2021-10-27 23:38:31.293795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 59], ["LIMIT", 1]]
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 23:38:31.295559"], ["updated_at", "2021-10-27 23:38:31.295559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 60], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 60], ["created_at", "2021-10-27 23:38:31.297544"], ["updated_at", "2021-10-27 23:38:31.297544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.302067"], ["updated_at", "2021-10-27 23:38:31.302067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.302892"], ["updated_at", "2021-10-27 23:38:31.302892"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 23:38:31.304272"], ["updated_at", "2021-10-27 23:38:31.304272"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 23:38:31.305737"], ["updated_at", "2021-10-27 23:38:31.305737"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 61], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 23:38:31.307347"], ["updated_at", "2021-10-27 23:38:31.307347"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 62], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 62], ["created_at", "2021-10-27 23:38:31.309075"], ["updated_at", "2021-10-27 23:38:31.309075"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.312727"], ["updated_at", "2021-10-27 23:38:31.312727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.313899"], ["updated_at", "2021-10-27 23:38:31.313899"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 23:38:31.315440"], ["updated_at", "2021-10-27 23:38:31.315440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 23:38:31.316979"], ["updated_at", "2021-10-27 23:38:31.316979"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 63], ["LIMIT", 1]]
Veterinarian Create (1.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 23:38:31.318449"], ["updated_at", "2021-10-27 23:38:31.318449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 64], ["created_at", "2021-10-27 23:38:31.321040"], ["updated_at", "2021-10-27 23:38:31.321040"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.323734"], ["updated_at", "2021-10-27 23:38:31.323734"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.324770"], ["updated_at", "2021-10-27 23:38:31.324770"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 23:38:31.326180"], ["updated_at", "2021-10-27 23:38:31.326180"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 23:38:31.327943"], ["updated_at", "2021-10-27 23:38:31.327943"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 23:38:31.329286"], ["updated_at", "2021-10-27 23:38:31.329286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Veterinarian Create (0.9ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 66], ["created_at", "2021-10-27 23:38:31.330532"], ["updated_at", "2021-10-27 23:38:31.330532"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.333404"], ["updated_at", "2021-10-27 23:38:31.333404"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.334308"], ["updated_at", "2021-10-27 23:38:31.334308"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 23:38:31.335790"], ["updated_at", "2021-10-27 23:38:31.335790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 23:38:31.337355"], ["updated_at", "2021-10-27 23:38:31.337355"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 23:38:31.338814"], ["updated_at", "2021-10-27 23:38:31.338814"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 68], ["created_at", "2021-10-27 23:38:31.340253"], ["updated_at", "2021-10-27 23:38:31.340253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.342845"], ["updated_at", "2021-10-27 23:38:31.342845"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.343732"], ["updated_at", "2021-10-27 23:38:31.343732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 23:38:31.344872"], ["updated_at", "2021-10-27 23:38:31.344872"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 23:38:31.345961"], ["updated_at", "2021-10-27 23:38:31.345961"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 23:38:31.347599"], ["updated_at", "2021-10-27 23:38:31.347599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Veterinarian Create (0.9ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 70], ["created_at", "2021-10-27 23:38:31.349470"], ["updated_at", "2021-10-27 23:38:31.349470"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (1.0ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.353018"], ["updated_at", "2021-10-27 23:38:31.353018"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.353942"], ["updated_at", "2021-10-27 23:38:31.353942"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 23:38:31.355207"], ["updated_at", "2021-10-27 23:38:31.355207"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 23:38:31.356718"], ["updated_at", "2021-10-27 23:38:31.356718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 23:38:31.358158"], ["updated_at", "2021-10-27 23:38:31.358158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 72], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 72], ["created_at", "2021-10-27 23:38:31.359711"], ["updated_at", "2021-10-27 23:38:31.359711"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 71]]
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 72]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.363019"], ["updated_at", "2021-10-27 23:38:31.363019"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.364158"], ["updated_at", "2021-10-27 23:38:31.364158"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 23:38:31.365761"], ["updated_at", "2021-10-27 23:38:31.365761"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 23:38:31.367321"], ["updated_at", "2021-10-27 23:38:31.367321"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 23:38:31.368796"], ["updated_at", "2021-10-27 23:38:31.368796"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 74], ["created_at", "2021-10-27 23:38:31.370253"], ["updated_at", "2021-10-27 23:38:31.370253"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 73], ["on_call", true]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.372960"], ["updated_at", "2021-10-27 23:38:31.372960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.374024"], ["updated_at", "2021-10-27 23:38:31.374024"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 23:38:31.375423"], ["updated_at", "2021-10-27 23:38:31.375423"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 23:38:31.376979"], ["updated_at", "2021-10-27 23:38:31.376979"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 23:38:31.378538"], ["updated_at", "2021-10-27 23:38:31.378538"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 76], ["created_at", "2021-10-27 23:38:31.380333"], ["updated_at", "2021-10-27 23:38:31.380333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 75], ["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.383282"], ["updated_at", "2021-10-27 23:38:31.383282"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.384362"], ["updated_at", "2021-10-27 23:38:31.384362"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 23:38:31.385777"], ["updated_at", "2021-10-27 23:38:31.385777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 23:38:31.387275"], ["updated_at", "2021-10-27 23:38:31.387275"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 77], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 23:38:31.388727"], ["updated_at", "2021-10-27 23:38:31.388727"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 78], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 78], ["created_at", "2021-10-27 23:38:31.390322"], ["updated_at", "2021-10-27 23:38:31.390322"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.6ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)  [["veterinary_office_id", 77], ["on_call", true]]
 (0.2ms)  ROLLBACK
 (1.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:19.754392"], ["updated_at", "2021-10-27 23:39:19.754392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:19.756628"], ["updated_at", "2021-10-27 23:39:19.756628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:19.757630"], ["updated_at", "2021-10-27 23:39:19.757630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:39:19 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.7ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (3.2ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1  [["application_status", "Pending"]]
Rendered admin/shelters/index.html.erb within layouts/application (34.5ms)

Completed 200 OK in 117ms (Views: 91.5ms | ActiveRecord: 22.0ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:19.918586"], ["updated_at", "2021-10-27 23:39:19.918586"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:19.919831"], ["updated_at", "2021-10-27 23:39:19.919831"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:19.920723"], ["updated_at", "2021-10-27 23:39:19.920723"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 438], ["created_at", "2021-10-27 23:39:19.932340"], ["updated_at", "2021-10-27 23:39:19.932340"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 438], ["created_at", "2021-10-27 23:39:19.934172"], ["updated_at", "2021-10-27 23:39:19.934172"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 439], ["created_at", "2021-10-27 23:39:19.935767"], ["updated_at", "2021-10-27 23:39:19.935767"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 440], ["created_at", "2021-10-27 23:39:19.937285"], ["updated_at", "2021-10-27 23:39:19.937285"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.7ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:19.942892"], ["updated_at", "2021-10-27 23:39:19.942892"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.8ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 23:39:19.944358"], ["updated_at", "2021-10-27 23:39:19.944358"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.6ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 64], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 539], ["LIMIT", 1]]
ApplicationPet Create (1.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 539], ["application_id", 64], ["created_at", "2021-10-27 23:39:19.964471"], ["updated_at", "2021-10-27 23:39:19.964471"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 65], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 542], ["LIMIT", 1]]
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 542], ["application_id", 65], ["created_at", "2021-10-27 23:39:19.967343"], ["updated_at", "2021-10-27 23:39:19.967343"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:39:19 -0600 Processing by Admin::SheltersController#index as HTML

Rendering admin/shelters/index.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (1.4ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1  [["application_status", "Pending"]]
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)  [["id", 438], ["id", 440]]
Rendered admin/shelters/index.html.erb within layouts/application (3.0ms)

Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 2.0ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:39:19 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.5ms)

Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:19 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (5.8ms)

Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (1.0ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 1.0ms)

 (0.1ms)  ROLLBACK
 (0.3ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.8ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (2.5ms)

Completed 200 OK in 14ms (Views: 4.1ms | ActiveRecord: 3.7ms)

 (3.9ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationController#welcome as HTML

Rendering application/welcome.html.erb within layouts/application
Rendered application/welcome.html.erb within layouts/application (0.0ms)

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (1.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (5.6ms)

Completed 200 OK in 47ms (Views: 34.3ms | ActiveRecord: 5.3ms)

 (0.3ms)  ROLLBACK
 (0.3ms)  BEGIN
 (0.3ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:20.116737"], ["updated_at", "2021-10-27 23:39:20.116737"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 441], ["created_at", "2021-10-27 23:39:20.121081"], ["updated_at", "2021-10-27 23:39:20.121081"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 441], ["created_at", "2021-10-27 23:39:20.123450"], ["updated_at", "2021-10-27 23:39:20.123450"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 441], ["created_at", "2021-10-27 23:39:20.126001"], ["updated_at", "2021-10-27 23:39:20.126001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.156394"], ["updated_at", "2021-10-27 23:39:20.156394"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.9ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 543], ["application_id", 66], ["created_at", "2021-10-27 23:39:20.160732"], ["updated_at", "2021-10-27 23:39:20.160732"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 544], ["application_id", 66], ["created_at", "2021-10-27 23:39:20.162746"], ["updated_at", "2021-10-27 23:39:20.162746"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/66” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"66"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 66)
Rendered applications/show.html.erb within layouts/application (2.7ms)

Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 2.1ms) Started GET “/pets/543” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"543"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 543], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 441], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/66” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"66"}
Application Load (0.4ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 66], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 66)
Rendered applications/show.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.7ms) Started GET “/pets/544” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"544"}
Pet Load (0.4ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 544], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 441], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.7ms)

 (0.4ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:20.193551"], ["updated_at", "2021-10-27 23:39:20.193551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 442], ["created_at", "2021-10-27 23:39:20.195299"], ["updated_at", "2021-10-27 23:39:20.195299"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 442], ["created_at", "2021-10-27 23:39:20.196783"], ["updated_at", "2021-10-27 23:39:20.196783"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 442], ["created_at", "2021-10-27 23:39:20.199273"], ["updated_at", "2021-10-27 23:39:20.199273"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.200630"], ["updated_at", "2021-10-27 23:39:20.200630"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/67” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"67"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.4ms) Started GET “/applications/67?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"67"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (1.1ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (4.0ms)

Completed 200 OK in 6ms (Views: 2.9ms | ActiveRecord: 2.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:20.226238"], ["updated_at", "2021-10-27 23:39:20.226238"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 443], ["created_at", "2021-10-27 23:39:20.227675"], ["updated_at", "2021-10-27 23:39:20.227675"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.228763"], ["updated_at", "2021-10-27 23:39:20.228763"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/68” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"68"}
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
Rendered applications/show.html.erb within layouts/application (1.7ms)

Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 1.2ms) Started GET “/applications/68?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"68"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')
Rendered applications/show.html.erb within layouts/application (1.9ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.4ms) Started POST “/application_pets?app_id=68&pet_id=549” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"68", "pet_id"=>"549"}
 (0.4ms)  SAVEPOINT active_record_1
Application Load (0.3ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 549], ["LIMIT", 1]]
ApplicationPet Create (0.6ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 549], ["application_id", 68], ["created_at", "2021-10-27 23:39:20.250781"], ["updated_at", "2021-10-27 23:39:20.250781"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/68 Completed 302 Found in 4ms (ActiveRecord: 1.7ms) Started GET “/applications/68” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"68"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.8ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:20.258689"], ["updated_at", "2021-10-27 23:39:20.258689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 444], ["created_at", "2021-10-27 23:39:20.260038"], ["updated_at", "2021-10-27 23:39:20.260038"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 444], ["created_at", "2021-10-27 23:39:20.261398"], ["updated_at", "2021-10-27 23:39:20.261398"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 444], ["created_at", "2021-10-27 23:39:20.262677"], ["updated_at", "2021-10-27 23:39:20.262677"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.4ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.264043"], ["updated_at", "2021-10-27 23:39:20.264043"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/69” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"69"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
Rendered applications/show.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.3ms) Started GET “/applications/69?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"69"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')
Rendered applications/show.html.erb within layouts/application (1.8ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.1ms) Started POST “/application_pets?app_id=69&pet_id=552” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationPetsController#create as HTML

Parameters: {"app_id"=>"69", "pet_id"=>"552"}
 (0.2ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 552], ["LIMIT", 1]]
ApplicationPet Create (1.2ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 552], ["application_id", 69], ["created_at", "2021-10-27 23:39:20.279550"], ["updated_at", "2021-10-27 23:39:20.279550"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/69 Completed 302 Found in 4ms (ActiveRecord: 2.1ms) Started GET “/applications/69” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"69"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.6ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.9ms) Started PATCH “/applications/69” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#update as HTML

Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"69"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.4ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "Pending"], ["updated_at", "2021-10-27 23:39:20.290734"], ["id", 69]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/69 Completed 302 Found in 2ms (ActiveRecord: 0.7ms) Started GET “/applications/69” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"69"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)
Rendered applications/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 1.0ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.5ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.303283"], ["updated_at", "2021-10-27 23:39:20.303283"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/applications/70” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"70"}
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)
Rendered applications/show.html.erb within layouts/application (1.6ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.1ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.310653"], ["updated_at", "2021-10-27 23:39:20.310653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/445/pets/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"445"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 445], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.319467"], ["updated_at", "2021-10-27 23:39:20.319467"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/446/pets/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"446"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 446], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms) Started POST “/shelters/446/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"446"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 446], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 446], ["created_at", "2021-10-27 23:39:20.330233"], ["updated_at", "2021-10-27 23:39:20.330233"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/446/pets Completed 302 Found in 3ms (ActiveRecord: 0.9ms) Started GET “/shelters/446/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"446"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 446], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 446], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.0ms)

Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.342256"], ["updated_at", "2021-10-27 23:39:20.342256"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/447/pets/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"447"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 447], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms) Started POST “/shelters/447/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"447"}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 447], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/447/pets/new Completed 302 Found in 3ms (ActiveRecord: 0.4ms) Started GET “/shelters/447/pets/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"447"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 447], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.359191"], ["updated_at", "2021-10-27 23:39:20.359191"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 448], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 448], ["created_at", "2021-10-27 23:39:20.361066"], ["updated_at", "2021-10-27 23:39:20.361066"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 448], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 448], ["created_at", "2021-10-27 23:39:20.362998"], ["updated_at", "2021-10-27 23:39:20.362998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 448], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 448], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.375592"], ["updated_at", "2021-10-27 23:39:20.375592"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 449], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 449], ["created_at", "2021-10-27 23:39:20.377326"], ["updated_at", "2021-10-27 23:39:20.377326"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 449], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 449], ["created_at", "2021-10-27 23:39:20.379065"], ["updated_at", "2021-10-27 23:39:20.379065"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 449], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 449], ["created_at", "2021-10-27 23:39:20.381576"], ["updated_at", "2021-10-27 23:39:20.381576"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 449], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 449], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.388721"], ["updated_at", "2021-10-27 23:39:20.388721"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 450], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 450], ["created_at", "2021-10-27 23:39:20.390478"], ["updated_at", "2021-10-27 23:39:20.390478"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 450], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 450], ["created_at", "2021-10-27 23:39:20.392087"], ["updated_at", "2021-10-27 23:39:20.392087"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 450], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 450], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms) Started GET “/pets/559/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"559"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 559], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.404366"], ["updated_at", "2021-10-27 23:39:20.404366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 451], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 451], ["created_at", "2021-10-27 23:39:20.406221"], ["updated_at", "2021-10-27 23:39:20.406221"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 451], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 451], ["created_at", "2021-10-27 23:39:20.407850"], ["updated_at", "2021-10-27 23:39:20.407850"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 451], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 451], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.7ms) Started DELETE “/pets/561” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"561"}
Pet Load (0.7ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 561], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (1.0ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 561]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 1.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 451], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.429508"], ["updated_at", "2021-10-27 23:39:20.429508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 452], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 452], ["created_at", "2021-10-27 23:39:20.432501"], ["updated_at", "2021-10-27 23:39:20.432501"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 452], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 452], ["created_at", "2021-10-27 23:39:20.434577"], ["updated_at", "2021-10-27 23:39:20.434577"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 452], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 452], ["created_at", "2021-10-27 23:39:20.435968"], ["updated_at", "2021-10-27 23:39:20.435968"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 452], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 452], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 452], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.6ms)

Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.4ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
Pet Load (0.9ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 452], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 452], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.8ms)

Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 1.0ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#new as HTML

Rendering applications/new.html.erb within layouts/application
Rendered applications/new.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#create as HTML

Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Application Create (0.6ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.479963"], ["updated_at", "2021-10-27 23:39:20.479963"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Update (0.4ms)  UPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3  [["application_status", "In Progress"], ["updated_at", "2021-10-27 23:39:20.481759"], ["id", 71]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/applications/71 Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET “/applications/71” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML

Parameters: {"id"=>"71"}
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Application Load (0.1ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 71], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)
CACHE Pet Load (0.0ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)
Rendered applications/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.7ms)

Application Load (0.4ms)  SELECT  "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1  [["LIMIT", 1]]
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.501359"], ["updated_at", "2021-10-27 23:39:20.501359"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 453], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 453], ["created_at", "2021-10-27 23:39:20.503709"], ["updated_at", "2021-10-27 23:39:20.503709"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/566” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"566"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 566], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 453], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.516748"], ["updated_at", "2021-10-27 23:39:20.516748"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 454], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 454], ["created_at", "2021-10-27 23:39:20.519062"], ["updated_at", "2021-10-27 23:39:20.519062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/567” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"567"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 567], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 454], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started DELETE “/pets/567” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"567"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 567], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.8ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 567]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Rendered pets/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-27 23:39:20.535009"], ["updated_at", "2021-10-27 23:39:20.535009"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 455], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 455], ["created_at", "2021-10-27 23:39:20.536729"], ["updated_at", "2021-10-27 23:39:20.536729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/568/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"568"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 568], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.2ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 23:39:20.546852"], ["updated_at", "2021-10-27 23:39:20.546852"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 456], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 456], ["created_at", "2021-10-27 23:39:20.550463"], ["updated_at", "2021-10-27 23:39:20.550463"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/569/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"569"}
Pet Load (0.1ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 569], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms) Started PATCH “/pets/569” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"569"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 569], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 456], ["LIMIT", 1]]
Pet Update (0.8ms)  UPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6  [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-27 23:39:20.568028"], ["id", 569]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets/569 Completed 302 Found in 3ms (ActiveRecord: 1.5ms) Started GET “/pets/569” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#show as HTML

Parameters: {"id"=>"569"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 569], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 456], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 23:39:20.574413"], ["updated_at", "2021-10-27 23:39:20.574413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 457], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 457], ["created_at", "2021-10-27 23:39:20.576094"], ["updated_at", "2021-10-27 23:39:20.576094"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/pets/570/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"570"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 570], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms) Started PATCH “/pets/570” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"570"}
Pet Load (0.3ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 570], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 457], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/pets/570/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/pets/570/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"570"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 570], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Shelter", "city"=>"Houston", "foster_program"=>"1", "rank"=>"7", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.2ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Houston Shelter"], ["city", "Houston"], ["rank", 7], ["created_at", "2021-10-27 23:39:20.605479"], ["updated_at", "2021-10-27 23:39:20.605479"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"", "foster_program"=>"0", "rank"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/shelters/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#new as HTML

Rendering shelters/new.html.erb within layouts/application
Rendered shelters/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.624283"], ["updated_at", "2021-10-27 23:39:20.624283"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.625643"], ["updated_at", "2021-10-27 23:39:20.625643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.626699"], ["updated_at", "2021-10-27 23:39:20.626699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.8ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 459], ["created_at", "2021-10-27 23:39:20.628137"], ["updated_at", "2021-10-27 23:39:20.628137"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 459], ["created_at", "2021-10-27 23:39:20.629972"], ["updated_at", "2021-10-27 23:39:20.629972"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 461], ["created_at", "2021-10-27 23:39:20.631377"], ["updated_at", "2021-10-27 23:39:20.631377"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.638506"], ["updated_at", "2021-10-27 23:39:20.638506"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.639753"], ["updated_at", "2021-10-27 23:39:20.639753"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.640777"], ["updated_at", "2021-10-27 23:39:20.640777"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 462], ["created_at", "2021-10-27 23:39:20.642062"], ["updated_at", "2021-10-27 23:39:20.642062"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 462], ["created_at", "2021-10-27 23:39:20.643468"], ["updated_at", "2021-10-27 23:39:20.643468"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 464], ["created_at", "2021-10-27 23:39:20.644891"], ["updated_at", "2021-10-27 23:39:20.644891"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.6ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.653344"], ["updated_at", "2021-10-27 23:39:20.653344"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.654620"], ["updated_at", "2021-10-27 23:39:20.654620"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.655705"], ["updated_at", "2021-10-27 23:39:20.655705"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 465], ["created_at", "2021-10-27 23:39:20.657007"], ["updated_at", "2021-10-27 23:39:20.657007"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 465], ["created_at", "2021-10-27 23:39:20.658319"], ["updated_at", "2021-10-27 23:39:20.658319"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 467], ["created_at", "2021-10-27 23:39:20.659653"], ["updated_at", "2021-10-27 23:39:20.659653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms) Started GET “/shelters?sort=pet_count” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Parameters: {"sort"=>"pet_count"}
Rendering shelters/index.html.erb within layouts/application
Shelter Load (1.9ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
Rendered shelters/index.html.erb within layouts/application (2.6ms)

Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.9ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.671589"], ["updated_at", "2021-10-27 23:39:20.671589"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.672852"], ["updated_at", "2021-10-27 23:39:20.672852"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.673882"], ["updated_at", "2021-10-27 23:39:20.673882"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 468], ["created_at", "2021-10-27 23:39:20.675198"], ["updated_at", "2021-10-27 23:39:20.675198"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 468], ["created_at", "2021-10-27 23:39:20.676653"], ["updated_at", "2021-10-27 23:39:20.676653"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 470], ["created_at", "2021-10-27 23:39:20.678184"], ["updated_at", "2021-10-27 23:39:20.678184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.7ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.4ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.7ms) Started GET “/shelters/468/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"468"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 468], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (2.0ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.690249"], ["updated_at", "2021-10-27 23:39:20.690249"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.693047"], ["updated_at", "2021-10-27 23:39:20.693047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.694196"], ["updated_at", "2021-10-27 23:39:20.694196"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 471], ["created_at", "2021-10-27 23:39:20.695788"], ["updated_at", "2021-10-27 23:39:20.695788"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 471], ["created_at", "2021-10-27 23:39:20.697459"], ["updated_at", "2021-10-27 23:39:20.697459"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 473], ["created_at", "2021-10-27 23:39:20.699190"], ["updated_at", "2021-10-27 23:39:20.699190"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.5ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started DELETE “/shelters/471” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#destroy as HTML

Parameters: {"id"=>"471"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 471], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 471]]
Pet Destroy (0.8ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 583]]
Pet Destroy (0.6ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 584]]
Shelter Destroy (0.9ms)  DELETE FROM "shelters" WHERE "shelters"."id" = $1  [["id", 471]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 5ms (ActiveRecord: 3.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.716860"], ["updated_at", "2021-10-27 23:39:20.716860"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.717964"], ["updated_at", "2021-10-27 23:39:20.717964"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.719001"], ["updated_at", "2021-10-27 23:39:20.719001"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 474], ["created_at", "2021-10-27 23:39:20.720333"], ["updated_at", "2021-10-27 23:39:20.720333"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 474], ["created_at", "2021-10-27 23:39:20.721688"], ["updated_at", "2021-10-27 23:39:20.721688"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 476], ["created_at", "2021-10-27 23:39:20.723029"], ["updated_at", "2021-10-27 23:39:20.723029"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.729361"], ["updated_at", "2021-10-27 23:39:20.729361"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.730477"], ["updated_at", "2021-10-27 23:39:20.730477"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.731888"], ["updated_at", "2021-10-27 23:39:20.731888"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 477], ["created_at", "2021-10-27 23:39:20.733111"], ["updated_at", "2021-10-27 23:39:20.733111"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 477], ["created_at", "2021-10-27 23:39:20.734493"], ["updated_at", "2021-10-27 23:39:20.734493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 479], ["created_at", "2021-10-27 23:39:20.735841"], ["updated_at", "2021-10-27 23:39:20.735841"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms) Started GET “/shelters?utf8=%E2%9C%93&search=RGV&commit=Search” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Parameters: {"utf8"=>"✓", "search"=>"RGV", "commit"=>"Search"}
Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%RGV%')
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.748898"], ["updated_at", "2021-10-27 23:39:20.748898"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.750376"], ["updated_at", "2021-10-27 23:39:20.750376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 480], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 480], ["created_at", "2021-10-27 23:39:20.751965"], ["updated_at", "2021-10-27 23:39:20.751965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 480], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 480], ["created_at", "2021-10-27 23:39:20.753559"], ["updated_at", "2021-10-27 23:39:20.753559"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 481], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 481], ["created_at", "2021-10-27 23:39:20.755441"], ["updated_at", "2021-10-27 23:39:20.755441"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 480], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 480], ["created_at", "2021-10-27 23:39:20.756929"], ["updated_at", "2021-10-27 23:39:20.756929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/480/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"480"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 480], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 480], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.773145"], ["updated_at", "2021-10-27 23:39:20.773145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.774230"], ["updated_at", "2021-10-27 23:39:20.774230"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 482], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 482], ["created_at", "2021-10-27 23:39:20.775521"], ["updated_at", "2021-10-27 23:39:20.775521"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 482], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 482], ["created_at", "2021-10-27 23:39:20.776744"], ["updated_at", "2021-10-27 23:39:20.776744"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 483], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 483], ["created_at", "2021-10-27 23:39:20.778267"], ["updated_at", "2021-10-27 23:39:20.778267"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 482], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 482], ["created_at", "2021-10-27 23:39:20.779978"], ["updated_at", "2021-10-27 23:39:20.779978"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/482/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"482"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 482], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.5ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 482], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started GET “/shelters/482/pets/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#new as HTML

Parameters: {"shelter_id"=>"482"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 482], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.791017"], ["updated_at", "2021-10-27 23:39:20.791017"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.792042"], ["updated_at", "2021-10-27 23:39:20.792042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 484], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 484], ["created_at", "2021-10-27 23:39:20.793394"], ["updated_at", "2021-10-27 23:39:20.793394"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 484], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 484], ["created_at", "2021-10-27 23:39:20.794993"], ["updated_at", "2021-10-27 23:39:20.794993"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 485], ["LIMIT", 1]]
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 485], ["created_at", "2021-10-27 23:39:20.796951"], ["updated_at", "2021-10-27 23:39:20.796951"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 484], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 484], ["created_at", "2021-10-27 23:39:20.799039"], ["updated_at", "2021-10-27 23:39:20.799039"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/484/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"484"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 484], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 484], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started GET “/pets/600/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML

Parameters: {"id"=>"600"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 600], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.809562"], ["updated_at", "2021-10-27 23:39:20.809562"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.810852"], ["updated_at", "2021-10-27 23:39:20.810852"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 486], ["LIMIT", 1]]
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 486], ["created_at", "2021-10-27 23:39:20.812648"], ["updated_at", "2021-10-27 23:39:20.812648"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 486], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 486], ["created_at", "2021-10-27 23:39:20.814454"], ["updated_at", "2021-10-27 23:39:20.814454"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 487], ["LIMIT", 1]]
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 487], ["created_at", "2021-10-27 23:39:20.816290"], ["updated_at", "2021-10-27 23:39:20.816290"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 486], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 486], ["created_at", "2021-10-27 23:39:20.817900"], ["updated_at", "2021-10-27 23:39:20.817900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/486/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"486"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 486], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 486], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.6ms) Started DELETE “/pets/604” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#destroy as HTML

Parameters: {"id"=>"604"}
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 604], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Destroy (0.5ms)  DELETE FROM "pets" WHERE "pets"."id" = $1  [["id", 604]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/pets Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML

Rendering pets/index.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 486], ["LIMIT", 1]]
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 487], ["LIMIT", 1]]
CACHE Shelter Load (0.0ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 486], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.4ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.832170"], ["updated_at", "2021-10-27 23:39:20.832170"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.833442"], ["updated_at", "2021-10-27 23:39:20.833442"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 488], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 488], ["created_at", "2021-10-27 23:39:20.834885"], ["updated_at", "2021-10-27 23:39:20.834885"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 488], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 488], ["created_at", "2021-10-27 23:39:20.836331"], ["updated_at", "2021-10-27 23:39:20.836331"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 489], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 489], ["created_at", "2021-10-27 23:39:20.837850"], ["updated_at", "2021-10-27 23:39:20.837850"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 488], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 488], ["created_at", "2021-10-27 23:39:20.839209"], ["updated_at", "2021-10-27 23:39:20.839209"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/488/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"488"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 488], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 488], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.9ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.846161"], ["updated_at", "2021-10-27 23:39:20.846161"]]
 (0.3ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.847991"], ["updated_at", "2021-10-27 23:39:20.847991"]]
 (0.5ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 490], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 490], ["created_at", "2021-10-27 23:39:20.850262"], ["updated_at", "2021-10-27 23:39:20.850262"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 490], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 490], ["created_at", "2021-10-27 23:39:20.851877"], ["updated_at", "2021-10-27 23:39:20.851877"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 491], ["LIMIT", 1]]
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 491], ["created_at", "2021-10-27 23:39:20.853426"], ["updated_at", "2021-10-27 23:39:20.853426"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 490], ["LIMIT", 1]]
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 490], ["created_at", "2021-10-27 23:39:20.854907"], ["updated_at", "2021-10-27 23:39:20.854907"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/490/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"490"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 490], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 490], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/shelters/490/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"490"}
Shelter Load (0.3ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 490], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.8ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')  [["shelter_id", 490], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.868263"], ["updated_at", "2021-10-27 23:39:20.868263"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.869670"], ["updated_at", "2021-10-27 23:39:20.869670"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 492], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 492], ["created_at", "2021-10-27 23:39:20.871649"], ["updated_at", "2021-10-27 23:39:20.871649"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 492], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 492], ["created_at", "2021-10-27 23:39:20.872960"], ["updated_at", "2021-10-27 23:39:20.872960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 493], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 493], ["created_at", "2021-10-27 23:39:20.874184"], ["updated_at", "2021-10-27 23:39:20.874184"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 492], ["LIMIT", 1]]
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 492], ["created_at", "2021-10-27 23:39:20.875357"], ["updated_at", "2021-10-27 23:39:20.875357"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/492/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"492"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 492], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 492], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/shelters/492/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"sort"=>"alphabetical", "shelter_id"=>"492"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 492], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 492], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.887864"], ["updated_at", "2021-10-27 23:39:20.887864"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/494” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"494"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 494], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 494]]
Rendered shelters/show.html.erb within layouts/application (1.3ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.8ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.894997"], ["updated_at", "2021-10-27 23:39:20.894997"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 495], ["created_at", "2021-10-27 23:39:20.896754"], ["updated_at", "2021-10-27 23:39:20.896754"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/495” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"495"}
Shelter Load (0.6ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 495], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.5ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 495]]
Rendered shelters/show.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.1ms)

 (0.4ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 495]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.903626"], ["updated_at", "2021-10-27 23:39:20.903626"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/496” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"496"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 496], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 496]]
Rendered shelters/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms) Started DELETE “/shelters/496” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#destroy as HTML

Parameters: {"id"=>"496"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 496], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 496]]
Shelter Destroy (0.7ms)  DELETE FROM "shelters" WHERE "shelters"."id" = $1  [["id", 496]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.4ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.915447"], ["updated_at", "2021-10-27 23:39:20.915447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/497” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#show as HTML

Parameters: {"id"=>"497"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 497], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 497]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms) Started GET “/shelters/497/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML

Parameters: {"shelter_id"=>"497"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 497], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
Pet Load (0.1ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 497], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.924464"], ["updated_at", "2021-10-27 23:39:20.924464"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/498/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"498"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 498], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.6ms)

Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.932845"], ["updated_at", "2021-10-27 23:39:20.932845"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/499/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"499"}
Shelter Load (0.1ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 499], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/shelters/499” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita Shelter", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"10", "commit"=>"Save ", "id"=>"499"}

Unpermitted parameters: :utf8, :_method, :commit

Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 499], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
Shelter Update (0.5ms)  UPDATE "shelters" SET "name" = $1, "city" = $2, "rank" = $3, "updated_at" = $4 WHERE "shelters"."id" = $5  [["name", "Wichita Shelter"], ["city", "Wichita"], ["rank", 10], ["updated_at", "2021-10-27 23:39:20.942230"], ["id", 499]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML

Rendering shelters/index.html.erb within layouts/application
Shelter Load (0.6ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
Rendered shelters/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.6ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.949373"], ["updated_at", "2021-10-27 23:39:20.949373"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/shelters/500/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"500"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 500], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/shelters/500” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"", "commit"=>"Save ", "id"=>"500"}

Unpermitted parameters: :utf8, :_method, :commit

Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 500], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/shelters/500/edit Completed 302 Found in 2ms (ActiveRecord: 0.4ms) Started GET “/shelters/500/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#edit as HTML

Parameters: {"id"=>"500"}
Shelter Load (0.2ms)  SELECT  "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2  [["id", 500], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:20.975820"], ["updated_at", "2021-10-27 23:39:20.975820"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/79/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"79"}
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 79], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (1.0ms)

Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:20.985032"], ["updated_at", "2021-10-27 23:39:20.985032"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/80/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"80"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started POST “/veterinary_offices/80/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"80"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Veterinarian Create (1.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 80], ["created_at", "2021-10-27 23:39:21.008116"], ["updated_at", "2021-10-27 23:39:21.008116"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/80/veterinarians Completed 302 Found in 17ms (ActiveRecord: 11.7ms) Started GET “/veterinary_offices/80/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"80"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 80], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 80], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (2.1ms)

Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.8ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.018476"], ["updated_at", "2021-10-27 23:39:21.018476"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/81/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"81"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/81/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"81"}

Unpermitted parameters: :utf8, :commit

VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/81/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.7ms) Started GET “/veterinary_offices/81/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"81"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 81], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.033910"], ["updated_at", "2021-10-27 23:39:21.033910"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 82], ["created_at", "2021-10-27 23:39:21.035633"], ["updated_at", "2021-10-27 23:39:21.035633"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 82], ["created_at", "2021-10-27 23:39:21.037456"], ["updated_at", "2021-10-27 23:39:21.037456"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 82], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.3ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.046245"], ["updated_at", "2021-10-27 23:39:21.046245"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Veterinarian Create (1.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 83], ["created_at", "2021-10-27 23:39:21.048436"], ["updated_at", "2021-10-27 23:39:21.048436"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 83], ["created_at", "2021-10-27 23:39:21.050768"], ["updated_at", "2021-10-27 23:39:21.050768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 83], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.056596"], ["updated_at", "2021-10-27 23:39:21.056596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 84], ["created_at", "2021-10-27 23:39:21.057921"], ["updated_at", "2021-10-27 23:39:21.057921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 84], ["created_at", "2021-10-27 23:39:21.059596"], ["updated_at", "2021-10-27 23:39:21.059596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 84], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/veterinarians/142/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"142"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 142], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.070469"], ["updated_at", "2021-10-27 23:39:21.070469"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 85], ["created_at", "2021-10-27 23:39:21.072412"], ["updated_at", "2021-10-27 23:39:21.072412"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 85], ["created_at", "2021-10-27 23:39:21.074049"], ["updated_at", "2021-10-27 23:39:21.074049"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (1.2ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started DELETE “/veterinarians/144” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"144"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 144], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.2ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 144]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.7ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 85], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (0.8ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.085954"], ["updated_at", "2021-10-27 23:39:21.085954"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 86], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 86], ["created_at", "2021-10-27 23:39:21.087619"], ["updated_at", "2021-10-27 23:39:21.087619"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/146” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"146"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 146], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 86], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.094795"], ["updated_at", "2021-10-27 23:39:21.094795"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 87], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 87], ["created_at", "2021-10-27 23:39:21.096490"], ["updated_at", "2021-10-27 23:39:21.096490"]]
 (0.9ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/147” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"147"}
Veterinarian Load (0.6ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 87], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.7ms) Started DELETE “/veterinarians/147” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"147"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 147]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
Rendered veterinarians/index.html.erb within layouts/application (0.3ms)

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:39:21.108301"], ["updated_at", "2021-10-27 23:39:21.108301"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 88], ["created_at", "2021-10-27 23:39:21.109758"], ["updated_at", "2021-10-27 23:39:21.109758"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/148/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"148"}
Veterinarian Load (0.4ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 148], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:39:21.116684"], ["updated_at", "2021-10-27 23:39:21.116684"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 89], ["created_at", "2021-10-27 23:39:21.118581"], ["updated_at", "2021-10-27 23:39:21.118581"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/149/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"149"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/149” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"149"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
Veterinarian Update (1.8ms)  UPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5  [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-27 23:39:21.130768"], ["id", 149]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/149 Completed 302 Found in 4ms (ActiveRecord: 2.5ms) Started GET “/veterinarians/149” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#show as HTML

Parameters: {"id"=>"149"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 89], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:39:21.138123"], ["updated_at", "2021-10-27 23:39:21.138123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 90], ["created_at", "2021-10-27 23:39:21.139542"], ["updated_at", "2021-10-27 23:39:21.139542"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinarians/150/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"150"}
Veterinarian Load (0.1ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 150], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started PATCH “/veterinarians/150” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"150"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 150], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit

 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.5ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 90], ["LIMIT", 1]]
 (0.2ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians/150/edit Completed 302 Found in 3ms (ActiveRecord: 1.0ms) Started GET “/veterinarians/150/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"150"}
Veterinarian Load (0.2ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 150], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-27 23:39:21.166189"], ["updated_at", "2021-10-27 23:39:21.166189"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.6ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN

Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#create as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}

Unpermitted parameters: :utf8, :commit

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#new as HTML

Rendering veterinary_offices/new.html.erb within layouts/application
Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:39:21.183527"], ["updated_at", "2021-10-27 23:39:21.183527"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:39:21.184768"], ["updated_at", "2021-10-27 23:39:21.184768"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.185708"], ["updated_at", "2021-10-27 23:39:21.185708"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 92], ["created_at", "2021-10-27 23:39:21.186918"], ["updated_at", "2021-10-27 23:39:21.186918"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 92], ["created_at", "2021-10-27 23:39:21.188246"], ["updated_at", "2021-10-27 23:39:21.188246"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 94], ["created_at", "2021-10-27 23:39:21.189596"], ["updated_at", "2021-10-27 23:39:21.189596"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:39:21.196446"], ["updated_at", "2021-10-27 23:39:21.196446"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:39:21.197859"], ["updated_at", "2021-10-27 23:39:21.197859"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.199067"], ["updated_at", "2021-10-27 23:39:21.199067"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 95], ["created_at", "2021-10-27 23:39:21.200633"], ["updated_at", "2021-10-27 23:39:21.200633"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 95], ["created_at", "2021-10-27 23:39:21.201897"], ["updated_at", "2021-10-27 23:39:21.201897"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 97], ["created_at", "2021-10-27 23:39:21.202960"], ["updated_at", "2021-10-27 23:39:21.202960"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:39:21.210130"], ["updated_at", "2021-10-27 23:39:21.210130"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:39:21.211315"], ["updated_at", "2021-10-27 23:39:21.211315"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.212650"], ["updated_at", "2021-10-27 23:39:21.212650"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (1.1ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 98], ["created_at", "2021-10-27 23:39:21.214043"], ["updated_at", "2021-10-27 23:39:21.214043"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 98], ["created_at", "2021-10-27 23:39:21.216077"], ["updated_at", "2021-10-27 23:39:21.216077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 100], ["created_at", "2021-10-27 23:39:21.217352"], ["updated_at", "2021-10-27 23:39:21.217352"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.3ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML

Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (1.2ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
Rendered veterinary_offices/index.html.erb within layouts/application (1.7ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.2ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:39:21.227466"], ["updated_at", "2021-10-27 23:39:21.227466"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:39:21.228716"], ["updated_at", "2021-10-27 23:39:21.228716"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.229894"], ["updated_at", "2021-10-27 23:39:21.229894"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 101], ["created_at", "2021-10-27 23:39:21.231421"], ["updated_at", "2021-10-27 23:39:21.231421"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 101], ["created_at", "2021-10-27 23:39:21.233131"], ["updated_at", "2021-10-27 23:39:21.233131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 103], ["created_at", "2021-10-27 23:39:21.234531"], ["updated_at", "2021-10-27 23:39:21.234531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/101/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"101"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 101], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:39:21.245304"], ["updated_at", "2021-10-27 23:39:21.245304"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:39:21.246723"], ["updated_at", "2021-10-27 23:39:21.246723"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.248250"], ["updated_at", "2021-10-27 23:39:21.248250"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 104], ["created_at", "2021-10-27 23:39:21.249742"], ["updated_at", "2021-10-27 23:39:21.249742"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 104], ["created_at", "2021-10-27 23:39:21.250853"], ["updated_at", "2021-10-27 23:39:21.250853"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 106], ["created_at", "2021-10-27 23:39:21.251893"], ["updated_at", "2021-10-27 23:39:21.251893"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms) Started DELETE “/veterinary_offices/104” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"104"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 104], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 104]]
Veterinarian Destroy (0.4ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 163]]
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 164]]
VeterinaryOffice Destroy (0.9ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 104]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 4ms (ActiveRecord: 2.4ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.5ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.5ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.268367"], ["updated_at", "2021-10-27 23:39:21.268367"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/107” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"107"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 107], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 107]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.1ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)

 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.274796"], ["updated_at", "2021-10-27 23:39:21.274796"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/108” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"108"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 108], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 108]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.7ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)

 (0.5ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 108]]
 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 23:39:21.281098"], ["updated_at", "2021-10-27 23:39:21.281098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/109” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"109"}
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.4ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 109]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms) Started DELETE “/veterinary_offices/109” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#destroy as HTML

Parameters: {"id"=>"109"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 109], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 109]]
VeterinaryOffice Destroy (0.7ms)  DELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1  [["id", 109]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 1.4ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.4ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 23:39:21.293020"], ["updated_at", "2021-10-27 23:39:21.293020"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/110” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#show as HTML

Parameters: {"id"=>"110"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
 (0.5ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 110]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.7ms) Started GET “/veterinary_offices/110/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"110"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 110], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 110], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.6ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:39:21.304336"], ["updated_at", "2021-10-27 23:39:21.304336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/111/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"111"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 111], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:39:21.310042"], ["updated_at", "2021-10-27 23:39:21.310042"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/112/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"112"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started PATCH “/veterinary_offices/112” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"112"}
VeterinaryOffice Load (0.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 112], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Update (0.6ms)  UPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4  [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-27 23:39:21.319451"], ["id", 112]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML

Rendering veterinary_offices/index.html.erb within layouts/application
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:39:21.326269"], ["updated_at", "2021-10-27 23:39:21.326269"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/113/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"113"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/113” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#update as HTML

Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"113"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]

Unpermitted parameters: :utf8, :_method, :commit, :id

 (0.1ms)  SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Redirected to www.example.com/veterinary_offices/113/edit Completed 302 Found in 2ms (ActiveRecord: 0.5ms) Started GET “/veterinary_offices/113/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#edit as HTML

Parameters: {"id"=>"113"}
VeterinaryOffice Load (2.4ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 113], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)

Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 2.4ms)

 (21.3ms)  ROLLBACK
 (2.3ms)  BEGIN
 (8.6ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (28.9ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.377634"], ["updated_at", "2021-10-27 23:39:21.377634"]]
 (16.9ms)  RELEASE SAVEPOINT active_record_1
 (0.4ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (45.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.424639"], ["updated_at", "2021-10-27 23:39:21.424639"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 23:39:21.472608"], ["updated_at", "2021-10-27 23:39:21.472608"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 23:39:21.474938"], ["updated_at", "2021-10-27 23:39:21.474938"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.8ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 23:39:21.477940"], ["updated_at", "2021-10-27 23:39:21.477940"]]
 (3.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 115], ["created_at", "2021-10-27 23:39:21.483364"], ["updated_at", "2021-10-27 23:39:21.483364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 115], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 115], ["created_at", "2021-10-27 23:39:21.485625"], ["updated_at", "2021-10-27 23:39:21.485625"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/114/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"114"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 114], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 114], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.8ms)

Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.7ms)

 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.499686"], ["updated_at", "2021-10-27 23:39:21.499686"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.501224"], ["updated_at", "2021-10-27 23:39:21.501224"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 23:39:21.503175"], ["updated_at", "2021-10-27 23:39:21.503175"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 23:39:21.505612"], ["updated_at", "2021-10-27 23:39:21.505612"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 23:39:21.507879"], ["updated_at", "2021-10-27 23:39:21.507879"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 117], ["created_at", "2021-10-27 23:39:21.510048"], ["updated_at", "2021-10-27 23:39:21.510048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 117], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 117], ["created_at", "2021-10-27 23:39:21.512200"], ["updated_at", "2021-10-27 23:39:21.512200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/116/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"116"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 116], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.7ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 116], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.9ms)

Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 1.0ms) Started GET “/veterinarians/172/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML

Parameters: {"id"=>"172"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 172], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.527536"], ["updated_at", "2021-10-27 23:39:21.527536"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.529195"], ["updated_at", "2021-10-27 23:39:21.529195"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 23:39:21.531919"], ["updated_at", "2021-10-27 23:39:21.531919"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 23:39:21.533843"], ["updated_at", "2021-10-27 23:39:21.533843"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 23:39:21.535496"], ["updated_at", "2021-10-27 23:39:21.535496"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 119], ["created_at", "2021-10-27 23:39:21.537220"], ["updated_at", "2021-10-27 23:39:21.537220"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 119], ["created_at", "2021-10-27 23:39:21.539208"], ["updated_at", "2021-10-27 23:39:21.539208"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/118/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"118"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 118], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started DELETE “/veterinarians/177” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#destroy as HTML

Parameters: {"id"=>"177"}
Veterinarian Load (0.3ms)  SELECT  "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2  [["id", 177], ["LIMIT", 1]]
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Destroy (0.3ms)  DELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1  [["id", 177]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Redirected to www.example.com/veterinarians Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML

Rendering veterinarians/index.html.erb within layouts/application
Veterinarian Load (0.1ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 118], ["LIMIT", 1]]
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
CACHE VeterinaryOffice Load (0.0ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 119], ["LIMIT", 1]]
Rendered veterinarians/index.html.erb within layouts/application (2.0ms)

Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.4ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.5ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.557475"], ["updated_at", "2021-10-27 23:39:21.557475"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.558904"], ["updated_at", "2021-10-27 23:39:21.558904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 23:39:21.560668"], ["updated_at", "2021-10-27 23:39:21.560668"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 23:39:21.562508"], ["updated_at", "2021-10-27 23:39:21.562508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 23:39:21.564497"], ["updated_at", "2021-10-27 23:39:21.564497"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 121], ["created_at", "2021-10-27 23:39:21.566376"], ["updated_at", "2021-10-27 23:39:21.566376"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 121], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 121], ["created_at", "2021-10-27 23:39:21.567857"], ["updated_at", "2021-10-27 23:39:21.567857"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/120/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"120"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 120], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.4ms)

Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.7ms) Started GET “/veterinary_offices/120/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#new as HTML

Parameters: {"veterinary_office_id"=>"120"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 120], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)

Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.6ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.580146"], ["updated_at", "2021-10-27 23:39:21.580146"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.582004"], ["updated_at", "2021-10-27 23:39:21.582004"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 23:39:21.583613"], ["updated_at", "2021-10-27 23:39:21.583613"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 23:39:21.585247"], ["updated_at", "2021-10-27 23:39:21.585247"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 23:39:21.586968"], ["updated_at", "2021-10-27 23:39:21.586968"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 123], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 123], ["created_at", "2021-10-27 23:39:21.588616"], ["updated_at", "2021-10-27 23:39:21.588616"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 123], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 123], ["created_at", "2021-10-27 23:39:21.590264"], ["updated_at", "2021-10-27 23:39:21.590264"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/122/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"122"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 122], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 122], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)

 (0.6ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.8ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.599147"], ["updated_at", "2021-10-27 23:39:21.599147"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.600916"], ["updated_at", "2021-10-27 23:39:21.600916"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 23:39:21.602399"], ["updated_at", "2021-10-27 23:39:21.602399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 23:39:21.603740"], ["updated_at", "2021-10-27 23:39:21.603740"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 23:39:21.605019"], ["updated_at", "2021-10-27 23:39:21.605019"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 125], ["created_at", "2021-10-27 23:39:21.606304"], ["updated_at", "2021-10-27 23:39:21.606304"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 125], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 125], ["created_at", "2021-10-27 23:39:21.607904"], ["updated_at", "2021-10-27 23:39:21.607904"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/124/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"124"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 124], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/124/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"124"}
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 124], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')  [["veterinary_office_id", 124], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)

Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.622852"], ["updated_at", "2021-10-27 23:39:21.622852"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.624058"], ["updated_at", "2021-10-27 23:39:21.624058"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 126], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 23:39:21.625706"], ["updated_at", "2021-10-27 23:39:21.625706"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 126], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 23:39:21.627286"], ["updated_at", "2021-10-27 23:39:21.627286"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 126], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 23:39:21.629016"], ["updated_at", "2021-10-27 23:39:21.629016"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 127], ["created_at", "2021-10-27 23:39:21.630599"], ["updated_at", "2021-10-27 23:39:21.630599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 127], ["created_at", "2021-10-27 23:39:21.631948"], ["updated_at", "2021-10-27 23:39:21.631948"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/veterinary_offices/127/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"veterinary_office_id"=>"127"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 127], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/127/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML

Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"127"}
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 127], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
Veterinarian Load (0.5ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 127], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.5ms)

Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.7ms)

 (0.2ms)  ROLLBACK
 (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.2ms)  BEGIN
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (1.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:41.163399"], ["updated_at", "2021-10-27 23:39:41.163399"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Pet Create (1.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 501], ["created_at", "2021-10-27 23:39:41.182782"], ["updated_at", "2021-10-27 23:39:41.182782"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 501], ["created_at", "2021-10-27 23:39:41.185362"], ["updated_at", "2021-10-27 23:39:41.185362"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 501], ["created_at", "2021-10-27 23:39:41.186675"], ["updated_at", "2021-10-27 23:39:41.186675"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.9ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:41.187868"], ["updated_at", "2021-10-27 23:39:41.187868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (1.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 621], ["application_id", 72], ["created_at", "2021-10-27 23:39:41.192145"], ["updated_at", "2021-10-27 23:39:41.192145"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 622], ["application_id", 72], ["created_at", "2021-10-27 23:39:41.194724"], ["updated_at", "2021-10-27 23:39:41.194724"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.8ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:41.204443"], ["updated_at", "2021-10-27 23:39:41.204443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 502], ["created_at", "2021-10-27 23:39:41.205908"], ["updated_at", "2021-10-27 23:39:41.205908"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 502], ["created_at", "2021-10-27 23:39:41.207271"], ["updated_at", "2021-10-27 23:39:41.207271"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 502], ["created_at", "2021-10-27 23:39:41.208447"], ["updated_at", "2021-10-27 23:39:41.208447"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:41.209553"], ["updated_at", "2021-10-27 23:39:41.209553"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 624], ["application_id", 73], ["created_at", "2021-10-27 23:39:41.211157"], ["updated_at", "2021-10-27 23:39:41.211157"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.7ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 625], ["application_id", 73], ["created_at", "2021-10-27 23:39:41.212510"], ["updated_at", "2021-10-27 23:39:41.212510"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 73], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:41.216448"], ["updated_at", "2021-10-27 23:39:41.216448"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 503], ["created_at", "2021-10-27 23:39:41.217927"], ["updated_at", "2021-10-27 23:39:41.217927"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 503], ["created_at", "2021-10-27 23:39:41.219228"], ["updated_at", "2021-10-27 23:39:41.219228"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 503], ["created_at", "2021-10-27 23:39:41.220392"], ["updated_at", "2021-10-27 23:39:41.220392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:41.221499"], ["updated_at", "2021-10-27 23:39:41.221499"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 627], ["application_id", 74], ["created_at", "2021-10-27 23:39:41.223129"], ["updated_at", "2021-10-27 23:39:41.223129"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
ApplicationPet Create (0.5ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 628], ["application_id", 74], ["created_at", "2021-10-27 23:39:41.224492"], ["updated_at", "2021-10-27 23:39:41.224492"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 74], ["LIMIT", 1]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.227171"], ["updated_at", "2021-10-27 23:39:41.227171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 504], ["created_at", "2021-10-27 23:39:41.228440"], ["updated_at", "2021-10-27 23:39:41.228440"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 504], ["created_at", "2021-10-27 23:39:41.229911"], ["updated_at", "2021-10-27 23:39:41.229911"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 504], ["created_at", "2021-10-27 23:39:41.231366"], ["updated_at", "2021-10-27 23:39:41.231366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.235138"], ["updated_at", "2021-10-27 23:39:41.235138"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 505], ["created_at", "2021-10-27 23:39:41.236413"], ["updated_at", "2021-10-27 23:39:41.236413"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 505], ["created_at", "2021-10-27 23:39:41.237757"], ["updated_at", "2021-10-27 23:39:41.237757"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 505], ["created_at", "2021-10-27 23:39:41.238988"], ["updated_at", "2021-10-27 23:39:41.238988"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.240628"], ["updated_at", "2021-10-27 23:39:41.240628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 506], ["created_at", "2021-10-27 23:39:41.242016"], ["updated_at", "2021-10-27 23:39:41.242016"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 506], ["created_at", "2021-10-27 23:39:41.243215"], ["updated_at", "2021-10-27 23:39:41.243215"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 506], ["created_at", "2021-10-27 23:39:41.244348"], ["updated_at", "2021-10-27 23:39:41.244348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.247037"], ["updated_at", "2021-10-27 23:39:41.247037"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 507], ["created_at", "2021-10-27 23:39:41.248725"], ["updated_at", "2021-10-27 23:39:41.248725"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 507], ["created_at", "2021-10-27 23:39:41.250150"], ["updated_at", "2021-10-27 23:39:41.250150"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 507], ["created_at", "2021-10-27 23:39:41.251459"], ["updated_at", "2021-10-27 23:39:41.251459"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.257443"], ["updated_at", "2021-10-27 23:39:41.257443"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 508], ["created_at", "2021-10-27 23:39:41.259047"], ["updated_at", "2021-10-27 23:39:41.259047"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 508], ["created_at", "2021-10-27 23:39:41.260571"], ["updated_at", "2021-10-27 23:39:41.260571"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 508], ["created_at", "2021-10-27 23:39:41.262003"], ["updated_at", "2021-10-27 23:39:41.262003"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.266595"], ["updated_at", "2021-10-27 23:39:41.266595"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 509], ["created_at", "2021-10-27 23:39:41.268166"], ["updated_at", "2021-10-27 23:39:41.268166"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 509], ["created_at", "2021-10-27 23:39:41.269615"], ["updated_at", "2021-10-27 23:39:41.269615"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 509], ["created_at", "2021-10-27 23:39:41.270996"], ["updated_at", "2021-10-27 23:39:41.270996"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.274425"], ["updated_at", "2021-10-27 23:39:41.274425"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 510], ["created_at", "2021-10-27 23:39:41.275817"], ["updated_at", "2021-10-27 23:39:41.275817"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 510], ["created_at", "2021-10-27 23:39:41.277200"], ["updated_at", "2021-10-27 23:39:41.277200"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 510], ["created_at", "2021-10-27 23:39:41.278766"], ["updated_at", "2021-10-27 23:39:41.278766"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
Pet Load (1.2ms)  SELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.282918"], ["updated_at", "2021-10-27 23:39:41.282918"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 511], ["created_at", "2021-10-27 23:39:41.284291"], ["updated_at", "2021-10-27 23:39:41.284291"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 511], ["created_at", "2021-10-27 23:39:41.285593"], ["updated_at", "2021-10-27 23:39:41.285593"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 511], ["created_at", "2021-10-27 23:39:41.286805"], ["updated_at", "2021-10-27 23:39:41.286805"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.3ms)  SELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1  [["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.289573"], ["updated_at", "2021-10-27 23:39:41.289573"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 512], ["created_at", "2021-10-27 23:39:41.290961"], ["updated_at", "2021-10-27 23:39:41.290961"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 512], ["created_at", "2021-10-27 23:39:41.292326"], ["updated_at", "2021-10-27 23:39:41.292326"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 512], ["created_at", "2021-10-27 23:39:41.293672"], ["updated_at", "2021-10-27 23:39:41.293672"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.7ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.296094"], ["updated_at", "2021-10-27 23:39:41.296094"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.297610"], ["updated_at", "2021-10-27 23:39:41.297610"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.298657"], ["updated_at", "2021-10-27 23:39:41.298657"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 513], ["created_at", "2021-10-27 23:39:41.300015"], ["updated_at", "2021-10-27 23:39:41.300015"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 513], ["created_at", "2021-10-27 23:39:41.301243"], ["updated_at", "2021-10-27 23:39:41.301243"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 515], ["created_at", "2021-10-27 23:39:41.302484"], ["updated_at", "2021-10-27 23:39:41.302484"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 513], ["created_at", "2021-10-27 23:39:41.303605"], ["updated_at", "2021-10-27 23:39:41.303605"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.305388"], ["updated_at", "2021-10-27 23:39:41.305388"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.306324"], ["updated_at", "2021-10-27 23:39:41.306324"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.307229"], ["updated_at", "2021-10-27 23:39:41.307229"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 516], ["created_at", "2021-10-27 23:39:41.308631"], ["updated_at", "2021-10-27 23:39:41.308631"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 516], ["created_at", "2021-10-27 23:39:41.309835"], ["updated_at", "2021-10-27 23:39:41.309835"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 518], ["created_at", "2021-10-27 23:39:41.311043"], ["updated_at", "2021-10-27 23:39:41.311043"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 516], ["created_at", "2021-10-27 23:39:41.312311"], ["updated_at", "2021-10-27 23:39:41.312311"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.324219"], ["updated_at", "2021-10-27 23:39:41.324219"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.325425"], ["updated_at", "2021-10-27 23:39:41.325425"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.326522"], ["updated_at", "2021-10-27 23:39:41.326522"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 519], ["created_at", "2021-10-27 23:39:41.327778"], ["updated_at", "2021-10-27 23:39:41.327778"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 519], ["created_at", "2021-10-27 23:39:41.329051"], ["updated_at", "2021-10-27 23:39:41.329051"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (1.0ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 521], ["created_at", "2021-10-27 23:39:41.330493"], ["updated_at", "2021-10-27 23:39:41.330493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 519], ["created_at", "2021-10-27 23:39:41.332449"], ["updated_at", "2021-10-27 23:39:41.332449"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.337599"], ["updated_at", "2021-10-27 23:39:41.337599"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.338500"], ["updated_at", "2021-10-27 23:39:41.338500"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.339324"], ["updated_at", "2021-10-27 23:39:41.339324"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 522], ["created_at", "2021-10-27 23:39:41.340494"], ["updated_at", "2021-10-27 23:39:41.340494"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 522], ["created_at", "2021-10-27 23:39:41.341783"], ["updated_at", "2021-10-27 23:39:41.341783"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 524], ["created_at", "2021-10-27 23:39:41.343155"], ["updated_at", "2021-10-27 23:39:41.343155"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 522], ["created_at", "2021-10-27 23:39:41.344311"], ["updated_at", "2021-10-27 23:39:41.344311"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.349025"], ["updated_at", "2021-10-27 23:39:41.349025"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.350244"], ["updated_at", "2021-10-27 23:39:41.350244"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.351131"], ["updated_at", "2021-10-27 23:39:41.351131"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 525], ["created_at", "2021-10-27 23:39:41.352250"], ["updated_at", "2021-10-27 23:39:41.352250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 525], ["created_at", "2021-10-27 23:39:41.353325"], ["updated_at", "2021-10-27 23:39:41.353325"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 527], ["created_at", "2021-10-27 23:39:41.354487"], ["updated_at", "2021-10-27 23:39:41.354487"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 525], ["created_at", "2021-10-27 23:39:41.355557"], ["updated_at", "2021-10-27 23:39:41.355557"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.358310"], ["updated_at", "2021-10-27 23:39:41.358310"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.359217"], ["updated_at", "2021-10-27 23:39:41.359217"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.360123"], ["updated_at", "2021-10-27 23:39:41.360123"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.6ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 528], ["created_at", "2021-10-27 23:39:41.361248"], ["updated_at", "2021-10-27 23:39:41.361248"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 528], ["created_at", "2021-10-27 23:39:41.362641"], ["updated_at", "2021-10-27 23:39:41.362641"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 530], ["created_at", "2021-10-27 23:39:41.364064"], ["updated_at", "2021-10-27 23:39:41.364064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 528], ["created_at", "2021-10-27 23:39:41.365257"], ["updated_at", "2021-10-27 23:39:41.365257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.2ms)  SELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.367569"], ["updated_at", "2021-10-27 23:39:41.367569"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.368439"], ["updated_at", "2021-10-27 23:39:41.368439"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.369287"], ["updated_at", "2021-10-27 23:39:41.369287"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 531], ["created_at", "2021-10-27 23:39:41.370520"], ["updated_at", "2021-10-27 23:39:41.370520"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 531], ["created_at", "2021-10-27 23:39:41.371574"], ["updated_at", "2021-10-27 23:39:41.371574"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 533], ["created_at", "2021-10-27 23:39:41.372646"], ["updated_at", "2021-10-27 23:39:41.372646"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 531], ["created_at", "2021-10-27 23:39:41.373759"], ["updated_at", "2021-10-27 23:39:41.373759"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.0ms)  SELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.376587"], ["updated_at", "2021-10-27 23:39:41.376587"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.377498"], ["updated_at", "2021-10-27 23:39:41.377498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.378366"], ["updated_at", "2021-10-27 23:39:41.378366"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 534], ["created_at", "2021-10-27 23:39:41.379553"], ["updated_at", "2021-10-27 23:39:41.379553"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.7ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 534], ["created_at", "2021-10-27 23:39:41.380835"], ["updated_at", "2021-10-27 23:39:41.380835"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 536], ["created_at", "2021-10-27 23:39:41.382610"], ["updated_at", "2021-10-27 23:39:41.382610"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 534], ["created_at", "2021-10-27 23:39:41.383699"], ["updated_at", "2021-10-27 23:39:41.383699"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (1.0ms)  SELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.386787"], ["updated_at", "2021-10-27 23:39:41.386787"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.387639"], ["updated_at", "2021-10-27 23:39:41.387639"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.388514"], ["updated_at", "2021-10-27 23:39:41.388514"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 537], ["created_at", "2021-10-27 23:39:41.389582"], ["updated_at", "2021-10-27 23:39:41.389582"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 537], ["created_at", "2021-10-27 23:39:41.390659"], ["updated_at", "2021-10-27 23:39:41.390659"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 539], ["created_at", "2021-10-27 23:39:41.391800"], ["updated_at", "2021-10-27 23:39:41.391800"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 537], ["created_at", "2021-10-27 23:39:41.392870"], ["updated_at", "2021-10-27 23:39:41.392870"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Shelter Load (0.4ms)  SELECT * FROM shelters ORDER BY shelters.name desc
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.395014"], ["updated_at", "2021-10-27 23:39:41.395014"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.396006"], ["updated_at", "2021-10-27 23:39:41.396006"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.5ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.397087"], ["updated_at", "2021-10-27 23:39:41.397087"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 540], ["created_at", "2021-10-27 23:39:41.398906"], ["updated_at", "2021-10-27 23:39:41.398906"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 540], ["created_at", "2021-10-27 23:39:41.400071"], ["updated_at", "2021-10-27 23:39:41.400071"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 542], ["created_at", "2021-10-27 23:39:41.401269"], ["updated_at", "2021-10-27 23:39:41.401269"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 540], ["created_at", "2021-10-27 23:39:41.402324"], ["updated_at", "2021-10-27 23:39:41.402324"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.2ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:41.403275"], ["updated_at", "2021-10-27 23:39:41.403275"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Create (0.3ms)  INSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"  [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 23:39:41.404204"], ["updated_at", "2021-10-27 23:39:41.404204"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 75], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 694], ["LIMIT", 1]]
ApplicationPet Create (0.4ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 694], ["application_id", 75], ["created_at", "2021-10-27 23:39:41.406729"], ["updated_at", "2021-10-27 23:39:41.406729"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Application Load (0.2ms)  SELECT  "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2  [["id", 76], ["LIMIT", 1]]
Pet Load (0.2ms)  SELECT  "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2  [["id", 695], ["LIMIT", 1]]
ApplicationPet Create (0.3ms)  INSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"  [["pet_id", 695], ["application_id", 76], ["created_at", "2021-10-27 23:39:41.408556"], ["updated_at", "2021-10-27 23:39:41.408556"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (1.1ms)  SELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1  [["application_status", "Pending"]]
Shelter Load (0.3ms)  SELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)  [["id", 540], ["id", 542]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.412634"], ["updated_at", "2021-10-27 23:39:41.412634"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.413695"], ["updated_at", "2021-10-27 23:39:41.413695"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.414636"], ["updated_at", "2021-10-27 23:39:41.414636"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 543], ["created_at", "2021-10-27 23:39:41.415970"], ["updated_at", "2021-10-27 23:39:41.415970"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 543], ["created_at", "2021-10-27 23:39:41.417183"], ["updated_at", "2021-10-27 23:39:41.417183"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 545], ["created_at", "2021-10-27 23:39:41.418401"], ["updated_at", "2021-10-27 23:39:41.418401"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 543], ["created_at", "2021-10-27 23:39:41.419531"], ["updated_at", "2021-10-27 23:39:41.419531"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.2ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2  [["shelter_id", 543], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.421928"], ["updated_at", "2021-10-27 23:39:41.421928"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.422887"], ["updated_at", "2021-10-27 23:39:41.422887"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.423832"], ["updated_at", "2021-10-27 23:39:41.423832"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 546], ["created_at", "2021-10-27 23:39:41.425089"], ["updated_at", "2021-10-27 23:39:41.425089"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 546], ["created_at", "2021-10-27 23:39:41.426508"], ["updated_at", "2021-10-27 23:39:41.426508"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 548], ["created_at", "2021-10-27 23:39:41.427840"], ["updated_at", "2021-10-27 23:39:41.427840"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 546], ["created_at", "2021-10-27 23:39:41.429069"], ["updated_at", "2021-10-27 23:39:41.429069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.4ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC  [["shelter_id", 546], ["adoptable", true]]
 (0.2ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.6ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.432336"], ["updated_at", "2021-10-27 23:39:41.432336"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.2ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.433718"], ["updated_at", "2021-10-27 23:39:41.433718"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.434621"], ["updated_at", "2021-10-27 23:39:41.434621"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 549], ["created_at", "2021-10-27 23:39:41.435884"], ["updated_at", "2021-10-27 23:39:41.435884"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 549], ["created_at", "2021-10-27 23:39:41.437183"], ["updated_at", "2021-10-27 23:39:41.437183"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 551], ["created_at", "2021-10-27 23:39:41.438456"], ["updated_at", "2021-10-27 23:39:41.438456"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.4ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 549], ["created_at", "2021-10-27 23:39:41.439640"], ["updated_at", "2021-10-27 23:39:41.439640"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Pet Load (0.7ms)  SELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)  [["shelter_id", 549], ["adoptable", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.4ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.442735"], ["updated_at", "2021-10-27 23:39:41.442735"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.443844"], ["updated_at", "2021-10-27 23:39:41.443844"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Shelter Create (0.3ms)  INSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.444850"], ["updated_at", "2021-10-27 23:39:41.444850"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.9ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 552], ["created_at", "2021-10-27 23:39:41.446038"], ["updated_at", "2021-10-27 23:39:41.446038"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.5ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 552], ["created_at", "2021-10-27 23:39:41.447855"], ["updated_at", "2021-10-27 23:39:41.447855"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.3ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 554], ["created_at", "2021-10-27 23:39:41.449371"], ["updated_at", "2021-10-27 23:39:41.449371"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Pet Create (0.2ms)  INSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"  [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 552], ["created_at", "2021-10-27 23:39:41.450498"], ["updated_at", "2021-10-27 23:39:41.450498"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1  [["shelter_id", 552]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.9ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.467140"], ["updated_at", "2021-10-27 23:39:41.467140"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (1.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 23:39:41.485629"], ["updated_at", "2021-10-27 23:39:41.485629"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 23:39:41.487892"], ["updated_at", "2021-10-27 23:39:41.487892"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 23:39:41.489098"], ["updated_at", "2021-10-27 23:39:41.489098"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 23:39:41.490257"], ["updated_at", "2021-10-27 23:39:41.490257"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.493977"], ["updated_at", "2021-10-27 23:39:41.493977"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 23:39:41.495400"], ["updated_at", "2021-10-27 23:39:41.495400"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 23:39:41.496899"], ["updated_at", "2021-10-27 23:39:41.496899"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 23:39:41.498348"], ["updated_at", "2021-10-27 23:39:41.498348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 23:39:41.499414"], ["updated_at", "2021-10-27 23:39:41.499414"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.504533"], ["updated_at", "2021-10-27 23:39:41.504533"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 23:39:41.505803"], ["updated_at", "2021-10-27 23:39:41.505803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 23:39:41.507231"], ["updated_at", "2021-10-27 23:39:41.507231"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 23:39:41.508577"], ["updated_at", "2021-10-27 23:39:41.508577"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 23:39:41.509868"], ["updated_at", "2021-10-27 23:39:41.509868"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.514064"], ["updated_at", "2021-10-27 23:39:41.514064"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 23:39:41.515397"], ["updated_at", "2021-10-27 23:39:41.515397"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 23:39:41.516643"], ["updated_at", "2021-10-27 23:39:41.516643"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 23:39:41.517843"], ["updated_at", "2021-10-27 23:39:41.517843"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 23:39:41.519037"], ["updated_at", "2021-10-27 23:39:41.519037"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.522171"], ["updated_at", "2021-10-27 23:39:41.522171"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 23:39:41.523474"], ["updated_at", "2021-10-27 23:39:41.523474"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 23:39:41.524700"], ["updated_at", "2021-10-27 23:39:41.524700"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 23:39:41.525900"], ["updated_at", "2021-10-27 23:39:41.525900"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 23:39:41.527084"], ["updated_at", "2021-10-27 23:39:41.527084"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.6ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.529889"], ["updated_at", "2021-10-27 23:39:41.529889"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.8ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 23:39:41.531450"], ["updated_at", "2021-10-27 23:39:41.531450"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 23:39:41.533296"], ["updated_at", "2021-10-27 23:39:41.533296"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 23:39:41.534374"], ["updated_at", "2021-10-27 23:39:41.534374"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 23:39:41.535566"], ["updated_at", "2021-10-27 23:39:41.535566"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1  [["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.538048"], ["updated_at", "2021-10-27 23:39:41.538048"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 23:39:41.539356"], ["updated_at", "2021-10-27 23:39:41.539356"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 23:39:41.540731"], ["updated_at", "2021-10-27 23:39:41.540731"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 23:39:41.542069"], ["updated_at", "2021-10-27 23:39:41.542069"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 23:39:41.543388"], ["updated_at", "2021-10-27 23:39:41.543388"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.545413"], ["updated_at", "2021-10-27 23:39:41.545413"]]
 (0.4ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (1.0ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.546880"], ["updated_at", "2021-10-27 23:39:41.546880"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.3ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.6ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 135], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 23:39:41.550641"], ["updated_at", "2021-10-27 23:39:41.550641"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 135], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 23:39:41.552250"], ["updated_at", "2021-10-27 23:39:41.552250"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 135], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 23:39:41.553657"], ["updated_at", "2021-10-27 23:39:41.553657"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 136], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 136], ["created_at", "2021-10-27 23:39:41.555142"], ["updated_at", "2021-10-27 23:39:41.555142"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.557059"], ["updated_at", "2021-10-27 23:39:41.557059"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.558052"], ["updated_at", "2021-10-27 23:39:41.558052"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.3ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 137], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 23:39:41.559567"], ["updated_at", "2021-10-27 23:39:41.559567"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 137], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 23:39:41.561077"], ["updated_at", "2021-10-27 23:39:41.561077"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 137], ["LIMIT", 1]]
Veterinarian Create (0.7ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 23:39:41.562769"], ["updated_at", "2021-10-27 23:39:41.562769"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 138], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 138], ["created_at", "2021-10-27 23:39:41.564628"], ["updated_at", "2021-10-27 23:39:41.564628"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.574584"], ["updated_at", "2021-10-27 23:39:41.574584"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.575999"], ["updated_at", "2021-10-27 23:39:41.575999"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 139], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 23:39:41.577433"], ["updated_at", "2021-10-27 23:39:41.577433"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 139], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 23:39:41.578921"], ["updated_at", "2021-10-27 23:39:41.578921"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 139], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 23:39:41.580408"], ["updated_at", "2021-10-27 23:39:41.580408"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 140], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 140], ["created_at", "2021-10-27 23:39:41.582254"], ["updated_at", "2021-10-27 23:39:41.582254"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.586100"], ["updated_at", "2021-10-27 23:39:41.586100"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.587139"], ["updated_at", "2021-10-27 23:39:41.587139"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 141], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 23:39:41.588579"], ["updated_at", "2021-10-27 23:39:41.588579"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 141], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 23:39:41.589955"], ["updated_at", "2021-10-27 23:39:41.589955"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 141], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 23:39:41.591268"], ["updated_at", "2021-10-27 23:39:41.591268"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 142], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 142], ["created_at", "2021-10-27 23:39:41.592572"], ["updated_at", "2021-10-27 23:39:41.592572"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.595216"], ["updated_at", "2021-10-27 23:39:41.595216"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.4ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.596368"], ["updated_at", "2021-10-27 23:39:41.596368"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 143], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 23:39:41.597965"], ["updated_at", "2021-10-27 23:39:41.597965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 143], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 23:39:41.599606"], ["updated_at", "2021-10-27 23:39:41.599606"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 143], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 23:39:41.600962"], ["updated_at", "2021-10-27 23:39:41.600962"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 144], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 144], ["created_at", "2021-10-27 23:39:41.602348"], ["updated_at", "2021-10-27 23:39:41.602348"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.604389"], ["updated_at", "2021-10-27 23:39:41.604389"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.605345"], ["updated_at", "2021-10-27 23:39:41.605345"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 145], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 23:39:41.606610"], ["updated_at", "2021-10-27 23:39:41.606610"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 145], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 23:39:41.607929"], ["updated_at", "2021-10-27 23:39:41.607929"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 145], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 23:39:41.609220"], ["updated_at", "2021-10-27 23:39:41.609220"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 146], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 146], ["created_at", "2021-10-27 23:39:41.610544"], ["updated_at", "2021-10-27 23:39:41.610544"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.4ms)  SELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.8ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.613002"], ["updated_at", "2021-10-27 23:39:41.613002"]]
 (0.2ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.7ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.614635"], ["updated_at", "2021-10-27 23:39:41.614635"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 23:39:41.616482"], ["updated_at", "2021-10-27 23:39:41.616482"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 23:39:41.617790"], ["updated_at", "2021-10-27 23:39:41.617790"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 147], ["LIMIT", 1]]
Veterinarian Create (0.2ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 23:39:41.618965"], ["updated_at", "2021-10-27 23:39:41.618965"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 148], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 148], ["created_at", "2021-10-27 23:39:41.620102"], ["updated_at", "2021-10-27 23:39:41.620102"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
VeterinaryOffice Load (0.8ms)  SELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.622803"], ["updated_at", "2021-10-27 23:39:41.622803"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.623789"], ["updated_at", "2021-10-27 23:39:41.623789"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 23:39:41.625091"], ["updated_at", "2021-10-27 23:39:41.625091"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 23:39:41.626493"], ["updated_at", "2021-10-27 23:39:41.626493"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 149], ["LIMIT", 1]]
Veterinarian Create (0.5ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 23:39:41.627905"], ["updated_at", "2021-10-27 23:39:41.627905"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 150], ["LIMIT", 1]]
Veterinarian Create (0.6ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 150], ["created_at", "2021-10-27 23:39:41.629534"], ["updated_at", "2021-10-27 23:39:41.629534"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.5ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 149]]
 (0.5ms)  SELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1  [["veterinary_office_id", 150]]
 (0.2ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.633540"], ["updated_at", "2021-10-27 23:39:41.633540"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.634549"], ["updated_at", "2021-10-27 23:39:41.634549"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 151], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 23:39:41.635747"], ["updated_at", "2021-10-27 23:39:41.635747"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 151], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 23:39:41.637071"], ["updated_at", "2021-10-27 23:39:41.637071"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 151], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 23:39:41.638330"], ["updated_at", "2021-10-27 23:39:41.638330"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 152], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 152], ["created_at", "2021-10-27 23:39:41.639577"], ["updated_at", "2021-10-27 23:39:41.639577"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.3ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC  [["veterinary_office_id", 151], ["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.2ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.3ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.642364"], ["updated_at", "2021-10-27 23:39:41.642364"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.643339"], ["updated_at", "2021-10-27 23:39:41.643339"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 153], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 23:39:41.644601"], ["updated_at", "2021-10-27 23:39:41.644601"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 153], ["LIMIT", 1]]
Veterinarian Create (0.9ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 23:39:41.645895"], ["updated_at", "2021-10-27 23:39:41.645895"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.2ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 153], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 23:39:41.647998"], ["updated_at", "2021-10-27 23:39:41.647998"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 154], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 154], ["created_at", "2021-10-27 23:39:41.649392"], ["updated_at", "2021-10-27 23:39:41.649392"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.2ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2  [["veterinary_office_id", 153], ["on_call", true]]
 (0.1ms)  ROLLBACK
 (0.1ms)  BEGIN
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.651689"], ["updated_at", "2021-10-27 23:39:41.651689"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Create (0.2ms)  INSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"  [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.652622"], ["updated_at", "2021-10-27 23:39:41.652622"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 155], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 23:39:41.653871"], ["updated_at", "2021-10-27 23:39:41.653871"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 155], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 23:39:41.655217"], ["updated_at", "2021-10-27 23:39:41.655217"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 155], ["LIMIT", 1]]
Veterinarian Create (0.3ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 23:39:41.656551"], ["updated_at", "2021-10-27 23:39:41.656551"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
 (0.1ms)  SAVEPOINT active_record_1
VeterinaryOffice Load (0.1ms)  SELECT  "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2  [["id", 156], ["LIMIT", 1]]
Veterinarian Create (0.4ms)  INSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"  [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 156], ["created_at", "2021-10-27 23:39:41.657818"], ["updated_at", "2021-10-27 23:39:41.657818"]]
 (0.1ms)  RELEASE SAVEPOINT active_record_1
Veterinarian Load (0.4ms)  SELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)  [["veterinary_office_id", 155], ["on_call", true]]
 (0.1ms)  ROLLBACK